list_users
Retrieve a paginated list of all users in a tenant, with filtering by email, username, or other attributes.
Instructions
List all users for the tenant. Returns user objects with pagination (page_size, skip, filter, order_by). Supports filtering by email, username, and other attributes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | Number of items to skip. This is the zero-based index of the first result. | |
| filter | No | Filter query for responses. The syntax follows the SCIM grammar from [RFC7644 Section 3.4.2.2](https:datatracker.ietf.org/doc/html/rfc7644#section-3.4.2.2). The supported operations are: - pr (pre | |
| order_by | No | A comma-delimited list of attributes to sort results. The default sorting order per attribute is ascending. Therefore, if you want descending order, append the " desc" suffix to the attribute name. | |
| page_size | No | The number of items returned per page. The response may include this exact number or fewer. If omitting this value, the response returns the default number of results the method allows. |