Skip to main content
GET
/
api
/
usuarios
/
:id
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"
}
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

id
integer
required
The unique identifier of the user

Response

id
integer
Unique identifier for the user
full_name
string
User’s full name
email
string
User’s email address
role
string
User role: DIRECTOR, GERENTE, COMERCIAL, CSV, OPERACIONES, or ADMINISTRACION
is_active
boolean
Whether the user account is active
dni
string
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"
}

Build docs developers (and LLMs) love