GET
/
v1
/
app
/
user
{
  "data": [
    {
      "id": "<string>",
      "org_id": "<string>",
      "account_id": "<string>",
      "profile_picture": "<string>",
      "name": "<string>",
      "email": "<string>",
      "job_position_name": "<string>",
      "job_position_description": "<string>",
      "state": "Active",
      "roles": [
        "AppGuest"
      ],
      "created_at": "<string>"
    }
  ],
  "next_cursor": "<string>",
  "previous_cursor": "<string>",
  "has_next_page": true,
  "has_previous_page": true,
  "total_count": 123
}

Query Parameters

state
string

Comma-separated list of user states to filter by. Options: Active, Inactive. Default is Active,Inactive

page
number

The absolute page number to fetch (1-based).

page_size
number

Number of items per page. Default is 20.

page_order
string

Sort order for pagination. Options: ASC, DESC. Default is ASC.

after
string

The cursor or value to paginate after (for relative pagination).

before
string

The cursor or value to paginate before (for relative pagination).

first
number

Limits the result to the first N items (after cursor).

last
number

Limits the result to the last N items (before cursor).

total_count
boolean

Include the total count in the response.

Response

200 - application/json

Returns a paginated list of users in the organization

data
object[]
required
has_next_page
boolean
required
has_previous_page
boolean
required
next_cursor
string
previous_cursor
string
total_count
number