> ## 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.

# List Schedule Assignments

> Retrieve a list of which employees are assigned to which schedules.

This endpoint allows external tools to map which shift patterns apply to which users.

### Query Parameters

<ParamField query="userId" type="string">
  Filter assignments for a specific employee.
</ParamField>

<ParamField query="workScheduleId" type="string">
  Filter assignments for a specific work schedule.
</ParamField>

### Response

<ResponseExample>
  ```json theme={null}
  {
    "data": [
      {
        "id": "uas_123...",
        "userId": "usr_999...",
        "workScheduleId": "sch_123...",
        "startDate": "2026-01-01T00:00:00.000Z",
        "endDate": null,
        "user": {
          "id": "usr_999...",
          "firstName": "John",
          "lastName": "Smith"
        },
        "workSchedule": {
          "id": "sch_123...",
          "name": "Standard Mon-Fri (9-5)",
          "type": "FIXED"
        }
      }
    ]
  }
  ```
</ResponseExample>
