Retrieves a single user by ID. This endpoint is not currently implemented in the source code but would follow the standard pattern.
This endpoint would require admin permissions to access user details.
Path Parameters
The unique identifier of the user
Response
Unique identifier for the user
User role: DIRECTOR, GERENTE, COMERCIAL, CSV, OPERACIONES, or ADMINISTRACION
Whether the user account is active
User’s national ID number (optional)
curl -X GET https://api.iclcotizaciones.com/api/usuarios/8 \
-H "Cookie: session=your_session_token"
{
"id": 8,
"full_name": "Carlos Rodríguez",
"email": "[email protected]",
"role": "COMERCIAL",
"is_active": true,
"dni": "11223344"
}