Skip to main content
GET
/
projects
/
List projects
curl --request GET \
  --url https://api-v2.missioninbox.com/projects/
{
  "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,
      "name": "<string>",
      "domains": "<string>",
      "mailboxes": "<string>",
      "sent_emails": "<string>",
      "open_rate": "<string>",
      "reply_rate": "<string>",
      "bounce_rate": "<string>",
      "spam_complaints": "<string>",
      "status": "<string>",
      "health": "<string>"
    }
  ]
}

Query Parameters

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

Search by project name

sort_by
string

Field to sort by

sort_order
string

Sort order: asc or desc

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[]