Skip to content

List

GET/users

Lists all users for the workspace

ReturnsExpand Collapse
data: array of User { id, external_id, role }
id: string

Unique user ID

external_id: 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",
      "external_id": "user_ext_123",
      "role": "admin"
    }
  ]
}
Returns Examples
{
  "data": [
    {
      "id": "user_abc123",
      "external_id": "user_ext_123",
      "role": "admin"
    }
  ]
}