Sign in

Linked Accounts

Link disposable inboxes to your Auva Account to persist them beyond the 1-hour TTL. Manage up to 10 linked inboxes from your dashboard.


Why Link?

By default, Auva Mail inboxes are truly disposable: they vanish after 1 hour. But sometimes you need a temporary inbox that lasts longer, like for:

Linked inboxes give you persistence without sacrificing privacy.


Linking an Inbox

You must be authenticated with your Auva Account to link an inbox.

text
POST https://auva.email/api/inboxes/{id}/link
Authorization: Bearer YOUR_ACCESS_TOKEN

Response:

text
{
  "id": "inbox_xyz789",
  "email": "signup-test-k3m1@auva.email",
  "expiresAt": null,
  "linked": true,
  "linkedAt": "2024-03-15T10:40:00.000Z"
}

Notice expiresAt becomes null: the inbox no longer expires.


Unlinking an Inbox

text
POST https://auva.email/api/inboxes/{id}/unlink
Authorization: Bearer YOUR_ACCESS_TOKEN

Once unlinked, the 1-hour TTL resumes from the current time.


Limits

ConstraintValue
Max linked inboxes per account10
Max messages per inbox100
Max attachment size10 MB
Anonymous inbox TTL1 hour
Linked inbox TTLUnlimited (until manually deleted)

If you've reached the 10-inbox limit, you must unlink or delete an existing inbox before linking a new one.