cURL
curl --request GET \ --url https://api.amplemarket.com/users \ --header 'Authorization: Bearer <token>'
{ "users": [ { "id": "019b4aeb-f9ee-7063-aef8-0aa5668a3bc1", "name": "Example User", "email": "[email protected]", "status": "active", "role": "sales_rep", "mailboxes": [ { "id": "019b4aeb-fa13-7630-b791-f8f372636ce5", "email": "[email protected]" } ] } ], "_links": { "self": { "href": "/users?page[size]=20" } } }
List users
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Page size
Page after
Page before
Filter by user status
Filter by user role
Filter by user email
successful
Show child attributes
Was this page helpful?