List Org Users
list_org_usersRetrieve a paginated list of all users in the organization with sorting and cursor-based navigation.
Instructions
List all users in the Coalesce organization.
Args:
limit, startingFrom, orderBy, orderByDirection: Pagination controls
Returns: { data: User[], next?: string, total?: number }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results to return (max 500) | |
| orderBy | No | Field to sort by (required with startingFrom) | |
| startingFrom | No | Cursor from previous response's next field | |
| orderByDirection | No | Sort direction |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | ||
| next | No | ||
| total | No |