Folders

Organize inbound inboxes

Folders group inbound inboxes within an account. Every inbox belongs to exactly one folder.

List folders

get

Returns all inbound folders in the account.

Authorizations
Api-TokenstringRequired

API token in Api-Token header

Responses
200

List of folders

application/json
idintegerOptionalExample: 1
namestringOptionalExample: Support
get
/api/inbound/folders
cURL

Create a folder

post

Create a new inbound folder.

Authorizations
Api-TokenstringRequired

API token in Api-Token header

Body
namestring · max: 100RequiredExample: Support
Responses
post
/api/inbound/folders
cURL

Get a folder

get

Returns a single inbound folder.

Authorizations
Api-TokenstringRequired

API token in Api-Token header

Path parameters
folder_idintegerRequired

Inbound folder ID

Example: 1
Responses
200

Folder details

application/json
idintegerOptionalExample: 1
namestringOptionalExample: Support
get
/api/inbound/folders/{folder_id}
cURL

Delete a folder

delete

Permanently delete an inbound folder along with all of its inboxes.

Authorizations
Api-TokenstringRequired

API token in Api-Token header

Path parameters
folder_idintegerRequired

Inbound folder ID

Example: 1
Responses
delete
/api/inbound/folders/{folder_id}
cURL

No content

Update a folder

patch

Update an inbound folder.

Authorizations
Api-TokenstringRequired

API token in Api-Token header

Path parameters
folder_idintegerRequired

Inbound folder ID

Example: 1
Body
namestring · max: 100RequiredExample: Support
Responses
200

Folder updated

application/json
idintegerOptionalExample: 1
namestringOptionalExample: Support
patch
/api/inbound/folders/{folder_id}
cURL

Last updated

Was this helpful?