GET
/
users
curl --request GET \
  --url https://api.contextual.ai/v1/users \
  --header 'Authorization: Bearer <token>'
{
  "users": [
    {
      "email": "<string>",
      "is_tenant_admin": false,
      "roles": [
        "VISITOR"
      ],
      "id": "<string>",
      "effective_roles": [
        "VISITOR"
      ]
    }
  ],
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

Query to filter users by email

cursor
string

Cursor for the beginning of the current page

limit
integer
default:50

Number of users to return

deactivated
boolean
default:false

When set to true, return deactivated users instead.

Response

200
application/json

Successful Response

The response is of type object.