cURL
curl --request GET \ --url https://api.amplemarket.com/users \ --header 'Authorization: Bearer <token>'
{ "users": [ { "id": "019ae9a7-4dc1-7493-9078-2835e153ade0", "name": "Example User", "email": "[email protected]", "status": "active", "role": "sales_rep", "mailboxes": [ { "id": "019ae9a7-4df8-7ef8-8443-9cb4da3a299a", "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?