GET
/
users
curl --request GET \
  --url https://api.amplemarket.com/users \
  --header 'Authorization: Bearer <token>'
{
  "users": [
    {
      "id": "01952828-d92f-7246-9aa5-3808bc03efa0",
      "name": "Example User",
      "email": "user@example.com",
      "status": "active",
      "role": "sales_rep",
      "mailboxes": [
        {
          "id": "01952828-d96b-7981-9f3f-eb55ca3584bd",
          "email": "mailbox@example.com"
        }
      ]
    }
  ],
  "_links": {
    "self": {
      "href": "/users?page[size]=20"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page[size]
string

Page size

page[after]
string

Page after

page[before]
string

Page before

status
string

Filter by user status

role
string

Filter by user role

email
string

Filter by user email

Response

200 - application/vnd.amp+json
successful
users
object[]