Retrieve a paginated list of all users in the system.
Pagination: Uses skip and limit query parameters for pagination.
Default limit is 50 users per page, maximum is 100.
Authentication: Requires a valid JWT token.
Role Aggregation: Each user in the response includes both direct roles and roles inherited through group memberships.
Use Cases:
Response Fields:
items: Array of user objects for the current pagetotal: Total number of users in the systemskip: Number of users skipped (offset)limit: Maximum number of users returned in this pagehas_more: Whether there are more users availableBearer authentication header of the form Bearer <token>, where <token> is your auth token.
Number of users to skip
x >= 0Maximum number of users to return
1 <= x <= 100Users retrieved successfully
List of items for the current page
Total number of items available
x >= 0150
Number of items skipped (offset)
x >= 00
Maximum number of items returned
1 <= x <= 10050
Whether there are more items available
true