---
title: "Get On Call Schedule"
method: GET
path: "/on-call-schedule/"
tags: ["On-Call Schedule"]
---

# Get On Call Schedule

`GET /on-call-schedule/`

Get the on-call schedule (assignments in range, default user, weekly hours).

## Query parameters

- `start` string, date, required — Range start date (inclusive)
- `end` string, date, required — Range end date (inclusive)

## Response `200`

Successful Response

- OnCallScheduleResponse
  - `assignments` OnCallAssignmentResponse[], required — Explicit per-date assignments in the requested range
    - `assignment_date` string, date, required — Date this assignment applies to (in the firm's timezone)
    - `user_id` string, uuid, required — User on call for this date
  - `default_user_id` string, uuid, nullable — Fallback on-call user for dates with no explicit assignment
  - `hours` OnCallScheduleHoursResponse[], required — Per-weekday on-call windows; empty list means on-call 24/7
    - `weekday` integer, required — Weekday, 0=Monday .. 6=Sunday
    - `enabled` boolean, required — Whether there is an on-call window on this weekday
    - `start_time` string, time, required — Window start (firm timezone)
    - `end_time` string, time, required — Window end; end <= start means the window crosses midnight into the next day

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/openintake/apis/fastapi.md) · [All operations](https://skmtc.dev/openintake/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/openintake/fastapi/revisions/b642b91e0a5c/schema)
