Skip to main content
GET
/
api
/
users
List users
curl --request GET \
  --url https://core-api.getaptly.com/api/users \
  --header 'x-token: <api-key>'
{
  "data": [
    {
      "_id": "abc123",
      "name": "Alice Smith",
      "role": "Admin"
    },
    {
      "_id": "def456",
      "name": "Bob Jones",
      "role": "Staff"
    }
  ]
}

Authorizations

x-token
string
header
required

Response

List of users.

data
object[]