curl --request GET \
--url https://api.example.com/api/v1/users/{id}{
"200": {},
"404": {},
"500": {},
"id": "<string>",
"username": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"role": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"active": true
}Retrieve a specific user by their unique identifier
curl --request GET \
--url https://api.example.com/api/v1/users/{id}{
"200": {},
"404": {},
"500": {},
"id": "<string>",
"username": "<string>",
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"role": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"active": true
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/ferneybaron/user-management-api/llms.txt
Use this file to discover all available pages before exploring further.
GET /api/v1/users/{id}
0f4df2de-fffb-4a24-9891-381ecf4f0f870f4df2de-fffb-4a24-9891-381ecf4f0f87jdoejdoe@example.comJohnDoeUSER2024-01-15T10:30:002024-01-15T10:30:00truecurl http://localhost:8080/api/v1/users/0f4df2de-fffb-4a24-9891-381ecf4f0f87
{
"id": "0f4df2de-fffb-4a24-9891-381ecf4f0f87",
"username": "jdoe",
"email": "jdoe@example.com",
"firstName": "John",
"lastName": "Doe",
"role": "USER",
"createdAt": "2024-01-15T10:30:00",
"updatedAt": "2024-01-15T10:30:00",
"active": true
}
{
"type": "about:blank",
"title": "User Not Found",
"status": 404,
"detail": "User not found with id: 0f4df2de-fffb-4a24-9891-381ecf4f0f87",
"userId": "0f4df2de-fffb-4a24-9891-381ecf4f0f87",
"timestamp": "2024-01-15T10:30:00"
}