> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shiftsheet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get User

> Retrieve detailed information about a specific user.

This endpoint returns expanded relationship data, such as their assigned manager's details.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the user.
</ParamField>

### Response

<ResponseExample>
  ```json theme={null}
  {
    "data": {
      "id": "usr_123...",
      "email": "jane.doe@example.com",
      "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"
    }
  }
  ```
</ResponseExample>
