Skip to main content
GET
/
users
List users
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"
    }
  }
}

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/json

successful

users
object[]