GET /utils/
Retrieve users.
Retrieves a paginated list of all registered users and the total user count. This endpoint is restricted to users with superuser privileges.
Endpoint
GET /utils/
Parameters
| Name | Type | Description |
|---|---|---|
| skip | int = 0 | The number of user records to skip from the beginning of the collection for pagination. |
| limit | int = 100 | The maximum number of user records to return in the response. |
Response
| Status | Description |
|---|---|
| 200 | Successfully retrieved the list of users. Returns UsersPublic. |
| 401 | Returned if the request lacks valid authentication credentials. |
| 403 | Returned if the authenticated user does not have superuser permissions. |