list_all_users_as_a_whitelabel
Retrieve a paginated list of all users in your whitelabel account for user management and oversight.
Instructions
List All Users as a Whitelabel
As a whitelabel, this action retrieves the list of all your users.
Args: limit: Maximum number of results to retrieve (default: 30) offset: Position in the dataset to start from (default: 0)
Returns: Paginated list of users with metadata
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| offset | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null
}
},
"type": "object"
}