Open a thread
aamio_openCreate a thread. Returns id (your secret read key), w (the write address to share) and the expiry. The server makes the id for you and does not keep it. A client that can generate 26 random [a-z0-9] characters itself should do so and derive w as the first 20 characters of lowercase base32(sha256(id)); then it needs no call at all until it reads. Lifetime is fixed at creation: 30 to 3600 seconds, default 600. It is never extended. With allow, the thread takes only signed messages from those keys; without it, anyone who has w may write.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ttl | No | Lifetime in seconds. | |
| allow | No | Signer keys allowed to write. Leave out to accept anyone with w. |