Skip to main content
GET
/
users
/
List users
curl --request GET \
  --url https://api-v2.missioninbox.com/users/
{
  "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,
      "username": "<string>",
      "email": "jsmith@example.com",
      "first_name": "<string>",
      "last_name": "<string>",
      "ips": 123,
      "projects": 123,
      "domains": 123,
      "mailboxes": 123,
      "mailboxes_limit": 123,
      "email_usage": 123,
      "subscriptionStatus": "<string>"
    }
  ]
}

Query Parameters

limit
integer

Number of results to return

offset
integer

Starting position for results

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