Skip to main content
GET
/
api
/
auth
/
me
curl "https://api.hitler.app/api/auth/me" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "email": "user@company.com",
  "name": "John Doe",
  "role": "employee",
  "organizationId": "456e7890-e12b-34d5-a678-426614174000"
}
This endpoint requires authentication. Include your JWT token in the Authorization header.

Response

id
string
User UUID
email
string
User’s email address
name
string
User’s display name
role
string
User’s role: employee, manager, or admin
organizationId
string
Organization UUID
curl "https://api.hitler.app/api/auth/me" \
  -H "Authorization: Bearer YOUR_JWT_TOKEN"
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "email": "user@company.com",
  "name": "John Doe",
  "role": "employee",
  "organizationId": "456e7890-e12b-34d5-a678-426614174000"
}