Skip to main content
GET
/
mailbox
/
List mailboxes
curl --request GET \
  --url https://api-v2.missioninbox.com/mailbox/
{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100",
  "results": [
    {
      "id": 123,
      "email": "<string>",
      "password": "<string>",
      "first_name": "<string>",
      "last_name": "<string>",
      "sent_this_cycle": -1,
      "open_rate": "<string>",
      "reply_rate": "<string>",
      "bounce_rate": "<string>",
      "spam_complaints": "<string>",
      "health": "<string>",
      "domain_name": "<string>",
      "reply_to": "jsmith@example.com",
      "glock_test_reports": "<string>",
      "email_server": "<string>",
      "warmup_active": "<string>"
    }
  ]
}

Query Parameters

domain
integer

Filter by domain ID

end_date
string

Filter mailboxes created on or before this date (YYYY-MM-DD)

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

ordering
string

Field to order by (e.g., email, -created_at)

project
integer

Filter by project ID

Search by email address

start_date
string

Filter mailboxes created on or after this date (YYYY-MM-DD)

Response

count
integer
Example:

123

next
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"

results
object[]