Getting Started
Tools
Inbox
Get Inboxes
Get all inboxes
GET
/
api
/
v1
/
inbox
curl --request GET \
--url https://app.botmailroom.com/api/v1/inbox \
--header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"name": "<string>",
"email_address": "<string>",
"allow_cc": true,
"allow_bcc": true,
"spf_pass_required": true,
"dkim_pass_required": true,
"dmarc_pass_required": true,
"allowed_from_addresses": {
"addresses": [
"<string>"
],
"domains": [
"<string>"
]
},
"blocked_from_addresses": {
"addresses": [
"<string>"
],
"domains": [
"<string>"
]
},
"webhook_url": "<string>",
"webhook_authentication_type": "signing_secret",
"open_and_click_tracking": false,
"updated_at": "<string>",
"webhook_secret_preview": "<string>"
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
Successful Response
The response is of type object[]
.
curl --request GET \
--url https://app.botmailroom.com/api/v1/inbox \
--header 'Authorization: Bearer <token>'
[
{
"id": "<string>",
"name": "<string>",
"email_address": "<string>",
"allow_cc": true,
"allow_bcc": true,
"spf_pass_required": true,
"dkim_pass_required": true,
"dmarc_pass_required": true,
"allowed_from_addresses": {
"addresses": [
"<string>"
],
"domains": [
"<string>"
]
},
"blocked_from_addresses": {
"addresses": [
"<string>"
],
"domains": [
"<string>"
]
},
"webhook_url": "<string>",
"webhook_authentication_type": "signing_secret",
"open_and_click_tracking": false,
"updated_at": "<string>",
"webhook_secret_preview": "<string>"
}
]