Skip to main content
GET
/
api
/
users
/
{id}
curl "https://api.hitler.app/api/users/user-uuid-123" \
  -H "Authorization: Bearer YOUR_TOKEN"
{
  "id": "user-uuid-123",
  "email": "john@acme.com",
  "name": "John Doe",
  "role": "employee",
  "isActive": true,
  "preferences": {},
  "organizationId": "org-uuid",
  "createdAt": "2024-01-10T15:30:00.000Z"
}
This endpoint requires Manager or Admin role.

Path Parameters

id
string
required
User UUID

Response

id
string
User UUID
email
string
User email
name
string
Display name
role
string
User role: employee, manager, admin
isActive
boolean
Account status
preferences
object
User preferences
createdAt
string
Account creation date
curl "https://api.hitler.app/api/users/user-uuid-123" \
  -H "Authorization: Bearer YOUR_TOKEN"
{
  "id": "user-uuid-123",
  "email": "john@acme.com",
  "name": "John Doe",
  "role": "employee",
  "isActive": true,
  "preferences": {},
  "organizationId": "org-uuid",
  "createdAt": "2024-01-10T15:30:00.000Z"
}