Skip to content
Get started

List

GET/users

Lists all users for the workspace

ReturnsExpand Collapse
data: array of object { id, externalId, role }
id: string

Unique user ID

externalId: string

External ID for the user

role: string

Role of the user

List

curl https://api.us-west-2.fragment.dev/users
{
  "data": [
    {
      "id": "user_abc123",
      "externalId": "user_ext_123",
      "role": "admin"
    }
  ]
}
Returns Examples
{
  "data": [
    {
      "id": "user_abc123",
      "externalId": "user_ext_123",
      "role": "admin"
    }
  ]
}