Skip to main content
GET
/
users
List users
curl --request GET \
  --url https://api.amplemarket.com/users \
  --header 'Authorization: Bearer <token>'
{
  "users": [
    {
      "id": "<string>",
      "name": "<string>",
      "email": "<string>",
      "role": "<string>"
    }
  ],
  "_links": {
    "self": {
      "href": "<string>"
    },
    "prev": {
      "href": "<string>"
    },
    "next": {
      "href": "<string>"
    }
  }
}

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[]