GET
/
api
/
v1
/
email
/
outbound
curl --request GET \
  --url https://app.botmailroom.com/api/v1/email/outbound \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "status": "pending",
    "inbox_id": "<string>",
    "to_addresses": [
      {
        "address": "<string>",
        "name": "<string>"
      }
    ],
    "cc_addresses": [
      {
        "address": "<string>",
        "name": "<string>"
      }
    ],
    "bcc_addresses": [
      {
        "address": "<string>",
        "name": "<string>"
      }
    ],
    "reply_to_addresses": [
      {
        "address": "<string>",
        "name": "<string>"
      }
    ],
    "from_address": {
      "address": "<string>",
      "name": "<string>"
    },
    "subject": "<string>",
    "date": "<string>",
    "message_type": "forward",
    "open_and_click_tracking": true,
    "latest_event": {
      "event_type": "<string>",
      "date": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

inbox_id
string | null

If provided, only outbound emails from the specified inbox are returned

limit
integer
default:100

The maximum number of outbound emails to return

Response

200
application/json

Successful Response

The response is of type object[].