Skip to main content
POST
/
v1
/
public
/
accounts
/
{account_id}
/
mailboxes
/
export
Export Mailboxes
curl --request POST \
  --url https://api.hybridbox.io/v1/public/accounts/{account_id}/mailboxes/export \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "domain": "<string>",
  "mailboxes": [
    "<string>"
  ]
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.hybridbox.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Public API bearer credential sent as Authorization: Bearer <token>. Use either an OAuth access token or a Hybridbox Service account token.

Path Parameters

account_id
string<uuid>
required

Body

application/json

Mailbox export request.

format
enum<string>
required
Available options:
instantly,
reachinbox,
smartlead
domain
string | null

Domain UUID or domain name to export

mailboxes
string[] | null

Mailbox UUIDs or email addresses to export

Response