curl --request GET \
--url https://app.sendmux.ai/api/v1/mailboxes \
--header 'Authorization: Bearer <token>'{
"ok": true,
"data": [
{
"id": "mbx_clxxxxxxxxxxxxxxxxxxxxxxxxx",
"email": "agent@acme.com",
"display_name": "<string>",
"quota_bytes": 123,
"send_scope": {
"type": "all",
"provider_public_ids": [
"<string>"
],
"group_public_ids": [
"<string>"
]
},
"status": "active",
"created_at": "<string>"
}
],
"pagination": {
"has_more": true,
"next_cursor": "<string>"
},
"meta": {
"request_id": "<string>"
}
}Returns a cursor-paginated list of mailboxes configured for the team, ordered by created_at descending. Pass cursor=<next_cursor> from the previous response to fetch the next page.
curl --request GET \
--url https://app.sendmux.ai/api/v1/mailboxes \
--header 'Authorization: Bearer <token>'{
"ok": true,
"data": [
{
"id": "mbx_clxxxxxxxxxxxxxxxxxxxxxxxxx",
"email": "agent@acme.com",
"display_name": "<string>",
"quota_bytes": 123,
"send_scope": {
"type": "all",
"provider_public_ids": [
"<string>"
],
"group_public_ids": [
"<string>"
]
},
"status": "active",
"created_at": "<string>"
}
],
"pagination": {
"has_more": true,
"next_cursor": "<string>"
},
"meta": {
"request_id": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.sendmux.ai/llms.txt
Use this file to discover all available pages before exploring further.
Sendmux API key. Obtain from the dashboard under API Keys. Format: smx_root_...
Pagination cursor — the next_cursor from the previous response.
Max results (default 50, max 100)
1 <= x <= 100Set to true to include soft-deleted mailboxes (status deleted) in the response. Default false. Soft-deleted mailboxes are retained for tenant-isolation references in delivery logs and API keys.
true Mailbox list
true Hide child attributes
Public ID
"mbx_clxxxxxxxxxxxxxxxxxxxxxxxxx"
Mailbox email address (lowercase)
"agent@acme.com"
Optional display name shown in outbound From headers
Storage quota in bytes
Hide child attributes
Outbound routing strategy. all lets the mailbox use any team-configured provider; providers restricts to the listed provider IDs; group routes via a delivery group.
all, providers, group Provider public IDs (only when type=providers)
Delivery group public IDs (only when type=group)
active | suspended | deleted
"active"
ISO 8601 creation timestamp
Was this page helpful?