Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve detailed information about a specific user.
cURL
curl --request GET \ --url https://api.example.com/api/public/v1/users/{id}
{ "data": { "id": "usr_123...", "email": "[email protected]", "firstName": "Jane", "lastName": "Doe", "role": "EMPLOYEE", "employmentType": "FULL_TIME", "position": "Software Engineer", "isActive": true, "assignedManagerId": "usr_456...", "assignedManager": { "id": "usr_456...", "firstName": "John", "lastName": "Smith" }, "createdAt": "2026-05-01T00:00:00.000Z", "updatedAt": "2026-05-18T00:00:00.000Z" } }