curl --request GET \
--url https://api.example.com/api/usuarios/{id}{
"200": {},
"401": {},
"403": {},
"404": {},
"usuario_id": 123,
"username": "<string>",
"email": {},
"nombre": "<string>",
"apellidos": "<string>",
"rol": {},
"direccion_envio": "<string>",
"fecha_nacimiento": "<string>",
"activo": true
}Retrieve detailed information about a specific user
curl --request GET \
--url https://api.example.com/api/usuarios/{id}{
"200": {},
"401": {},
"403": {},
"404": {},
"usuario_id": 123,
"username": "<string>",
"email": {},
"nombre": "<string>",
"apellidos": "<string>",
"rol": {},
"direccion_envio": "<string>",
"fecha_nacimiento": "<string>",
"activo": true
}curl -X GET https://api.iquea.com/api/usuarios/1 \
-H "Authorization: Bearer YOUR_JWT_TOKEN"
ADMIN - Administrator with full accessCLIENTE - Regular customer (default){
"usuario_id": 1,
"username": "johndoe",
"email": {
"value": "[email protected]"
},
"nombre": "John",
"apellidos": "Doe Smith",
"rol": "CLIENTE",
"direccion_envio": "123 Main St, Madrid, Spain",
"fecha_nacimiento": "1990-05-15",
"activo": true
}
password field is stored securely in the database but excluded from all DTO responses.