Skip to main content

List users

Retrieve a paginated list of users. Supports cursor-based pagination using 'before' and 'after' query parameters. The 'limit' parameter controls the number of users returned per page. Optionally, use the 'fields' parameter to select specific fields (commented out).

Query Parameters
limit int32

Possible values: 1 ≤ value ≤ 1000

Maximum number of users to return per page. Range: 1-1000. Default: 10.

Example: 10

before string

Returns list of users before this cursor (for reverse paging).

after string

Returns list of users after this cursor (for forward paging).

Responses
200

A paginated list of users.

Schema OPTIONAL
data object[]
id string
name string OPTIONAL
email string OPTIONAL
type string OPTIONAL

Possible values: [app, user, team, report]

role string OPTIONAL

Possible values: [admin, user, observer, service]

json string OPTIONAL
version string OPTIONAL
active boolean OPTIONAL
assetCreatedDate date-time OPTIONAL
assetUpdatedDate date-time OPTIONAL
createdTime int64 OPTIONAL
updatedTime int64 OPTIONAL
createdBy string OPTIONAL
updatedBy string OPTIONAL
owner string OPTIONAL
tags string[] OPTIONAL
paging object OPTIONAL
before string OPTIONAL
after string OPTIONAL
total int32
400

Invalid pagination parameters or request.