Skip to main content
GET
/
api
/
public
/
v1
/
users
/
{id}
Get User
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"
  }
}
This endpoint returns expanded relationship data, such as their assigned manager’s details.

Path Parameters

id
string
required
The unique identifier of the user.

Response

{
  "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"
  }
}