v5

latestOpenAPI 3.1.02026-07-31151195455.5 KB
users

Returns a list of users for your organization.

get/users

Query parameters

cursorstring

The pagination cursor value.

page_sizeinteger

Number of results to return per page. Default is 200.

tag_idsstring[]

The IDs of the tags to filter by. Returns only users that have any of these tags applied.

Response

One page worth users in your organization.

nextstring nullable

The cursor with which to continue pagination if additional result pages exist.

previousstring nullable

The cursor used to obtain the current result page.

Example response

{
  "next": "cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
  "previous": "cj1sZXdwd2VycWVtY29zZnNkc2NzUWxNMEUxTXk0ME16UXpNallsTWtJ",
  "results": [
    {
      "user_id": "29827fb8-f2dd-4e80-9576-28e31e9934ac",
      "email": "john.doe@company.dev",
      "full_name": "John Doe",
      "position": "Senior Engineer"
    },
    {
      "user_id": "e8581682-04f7-473a-a419-472f0fb26d46",
      "email": "jane.smith@company.dev",
      "full_name": "Jane Smith",
      "position": "Product Marketing Lead"
    }
  ]
}