Get a paginated list of users
GET/platform/solutions/api/v1/users
Retrieve a paginated and sorted list of application users.
Usage
- Provide pagination parameters (
skipCount,maxResultCount) to control result size. - Provide sorting parameters (
sorting) to order results.
Parameters
skipCount(int, optional): number of records to skip before starting to collect results.maxResultCount(int, optional): maximum number of records to return (1–1000).sorting(string, optional): field and direction to sort the results (e.g., "name asc", "email desc").
Responses
200 OK: successfully returns a paginated list of users.401 Unauthorized: caller does not have permission.403 Forbidden: caller does not have permission to list users.
Security
- This API requires authentication.
- Available to users with appropriate roles.
Request
Responses
- 200
- 400
- 401
- 403
- 404
- 500
- 501
OK
Bad Request
Unauthorized
Forbidden
Not Found
Internal Server Error
Not Implemented