Inboxes represent individual mailboxes inside your organization. Each inbox can send, receive, and search messages independently.
POST/v1/inboxes{
"name": "Customer Success Bot",
"email": "cs-bot@agents.example.com"
}
| Field | Type | Required | Description |
|---|---|---|---|
name | string | No | Optional display name for the email. |
email | string | No | Custom email address; auto-generated if omitted. |
201 Created{
"id": "01J3ZKZ0BRQ9SSJK1GRSCX4N4Z",
"name": "Customer Success Bot",
"email": "cs-bot@agents.example.com",
"createdAt": "2024-10-10T19:12:42Z"
// ...additional configuration data may be present
}
GET/v1/inboxes200 OK[
{
"id": "ibox_01J3ZKZ0BRQ9SSJK1GRSCX4N4Z",
"name": "Customer Success Bot",
"email": "cs-bot@agents.example.com",
"createdAt": "2024-10-10T19:12:42Z"
}
]
GET/v1/inboxes/{inboxId}| Parameter | Type | Description |
|---|---|---|
inboxId | string | Identifier returned during creation or listing. |
200 OK{
"id": "ibox_01J3ZKZ0BRQ9SSJK1GRSCX4N4Z",
"name": "Customer Success Bot",
"email": "cs-bot@agents.example.com",
"createdAt": "2024-10-10T19:12:42Z"
}
DELETE/v1/inboxes/{inboxId}Deleting an inbox revokes sending access and archives historical messages.
200 OK{
"id": "ibox_01J3ZKZ0BRQ9SSJK1GRSCX4N4Z",
"name": "Customer Success Bot",
"email": "cs-bot@agents.example.com",
"createdAt": "2024-10-10T19:12:42Z"
}
Tip: Delete inactive inboxes after migrating data to keep your workspace clean.