Returns a paginated list of members in your organization. Supports cursor-based pagination, sorting, and filtering.
| Parameter | Type | Default | Description |
|---|---|---|---|
page[size] | integer | 20 | Items per page (1-50) |
after | string | - | Cursor for next page |
before | string | - | Cursor for previous page |
| Parameter | Type | Default | Description |
|---|---|---|---|
sort | string | -createdAt | Sort order. Prefix with - for descending |
id, role, status, createdAt, updatedAt
| Parameter | Description |
|---|---|
filter[status] | Filter by exact status |
filter[status][eq] | Status equals |
filter[status][ne] | Status not equals |
filter[status][in] | Status in list (comma-separated) |
filter[role] | Filter by exact role |
filter[role][eq] | Role equals |
filter[role][ne] | Role not equals |
filter[role][in] | Role in list (comma-separated) |
| Parameter | Type | Default | Description |
|---|---|---|---|
includeDisabled | boolean | true | Include disabled members |
Your Tomorro API key. You can generate one from your organization settings.
Number of items per page (1-50)
1 <= x <= 50Cursor for fetching items after this position (for forward pagination)
Cursor for fetching items before this position (for backward pagination)
Sort order. Comma-separated list of fields. Prefix with - for descending. Allowed fields: id, role, status, createdAt, updatedAt
Include disabled members in results
Filter by status (exact match) The current status of the member
active, disabled, pending Filter by status equals The current status of the member
active, disabled, pending Filter by status not equals The current status of the member
active, disabled, pending Filter by status in list (comma-separated)
Filter by role (exact match) The role of the member within the organization
user, manager, admin Filter by role equals The role of the member within the organization
user, manager, admin Filter by role not equals The role of the member within the organization
user, manager, admin Filter by role in list (comma-separated)