Users List
Retrieve a paginated list of users.
Query and paginate through users in the authentication system.
Configuration
Inputs
| Name | Code | Type | Required | Default | Description |
|---|---|---|---|---|---|
| Active | active | Boolean | No | - | Filter by active status |
| Confirmed | confirmed | Boolean | No | - | Filter by confirmed status |
| Offset | offset | Integer | No | 0 | Pagination offset |
| Limit | limit | Integer | No | - | Maximum results |
Outputs
| Name | Type | Description |
|---|---|---|
| users | Object[] | Array of user objects |
| total_count | Integer | Total user count |
Usage
{
"active": true,
"confirmed": true,
"offset": 0,
"limit": 50
}Pagination
Use offset and limit for pagination:
- Page 1:
offset: 0, limit: 50 - Page 2:
offset: 50, limit: 50 - Page 3:
offset: 100, limit: 50