cURL
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>" } ] }
Get a paginated list of users.
Query Parameters:
limit
offset
Response: List of users with basic profile information and resource counts.
Number of results to return
Starting position for results
123
"http://api.example.org/accounts/?offset=400&limit=100"
"http://api.example.org/accounts/?offset=200&limit=100"
Show child attributes