cURL
curl --request GET \ --url https://api.amplemarket.com/users \ --header 'Authorization: Bearer <token>'
{ "users": [ { "id": "019b32ae-51bc-7965-b37d-29f11753df49", "name": "Example User", "email": "[email protected]", "status": "active", "role": "sales_rep", "mailboxes": [ { "id": "019b32ae-51df-7a39-b595-9fa5e0ddc38d", "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?