Documentation Index
Fetch the complete documentation index at: https://mintlify.com/LizandroCanul/back_sdo/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Retrieve a list of all users in the system. This endpoint is restricted to administrators only and returns user information without sensitive data like passwords.Authentication
Requires a valid JWT token with admin role.Response
Returns an array of user objects with the following fields:Unique identifier for the user
User’s email address (unique)
User’s full name
User role: either
admin or userWhether the user account is active
Flag indicating if user must change password on next login
Example Request
cURL
Example Response
200 Success
401 Unauthorized
403 Forbidden
Authorization Rules
- JWT token must be valid and not expired
- User role must be exactly
admin - Non-admin users attempting this request will receive 403 Forbidden
- The password field is excluded from all responses for security