curl --request GET \
--url https://api.example.com/admin/user/{id} \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"name": "<string>",
"username": "<string>",
"image_path": "<string>"
}
'{
"id": 1,
"name": "Arturo Utrilla",
"email": "arturo@gmail.com",
"username": "Arturo_utrilla",
"password": "e28dce46d564d38b9b58f6c85ff4bb75ba3df1202991f5b6e1d5e5d585c1b8e7",
"salt": "9tuubdqpqei",
"created_at": "2025-09-25T12:14:44.000Z",
"updated_at": "2025-10-24T01:45:55.000Z",
"image_path": "profile-pictures/d84c32b6211caf458c18f49db1992bebbf5dbfccc581e47aad0b77eee3ea637a.jpg",
"role_id": 1
}
curl --request GET \
--url https://api.example.com/admin/user/{id} \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>",
"name": "<string>",
"username": "<string>",
"image_path": "<string>"
}
'{
"id": 1,
"name": "Arturo Utrilla",
"email": "arturo@gmail.com",
"username": "Arturo_utrilla",
"password": "e28dce46d564d38b9b58f6c85ff4bb75ba3df1202991f5b6e1d5e5d585c1b8e7",
"salt": "9tuubdqpqei",
"created_at": "2025-09-25T12:14:44.000Z",
"updated_at": "2025-10-24T01:45:55.000Z",
"image_path": "profile-pictures/d84c32b6211caf458c18f49db1992bebbf5dbfccc581e47aad0b77eee3ea637a.jpg",
"role_id": 1
}
Retrieves detailed information about a specific user by their ID. This endpoint also allows updating user information.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/4rt21/backend-proyecto/llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET https://api.falconalert.com/admin/user/1 \
-H "Authorization: Bearer YOUR_ADMIN_TOKEN"
{
"id": 1,
"name": "Arturo Utrilla",
"email": "arturo@gmail.com",
"username": "Arturo_utrilla",
"password": "e28dce46d564d38b9b58f6c85ff4bb75ba3df1202991f5b6e1d5e5d585c1b8e7",
"salt": "9tuubdqpqei",
"created_at": "2025-09-25T12:14:44.000Z",
"updated_at": "2025-10-24T01:45:55.000Z",
"image_path": "profile-pictures/d84c32b6211caf458c18f49db1992bebbf5dbfccc581e47aad0b77eee3ea637a.jpg",
"role_id": 1
}
curl -X PUT https://api.falconalert.com/admin/user/1 \
-H "Authorization: Bearer YOUR_ADMIN_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "John Doe",
"email": "john.doe@example.com"
}'
{
"id": "1",
"email": "john.doe@example.com",
"name": "John Doe",
"username": "johndoe",
"image_path": "/path/to/image.jpg",
"role_id": 1
}