---
title: "List Schedules"
method: GET
path: "/api/v1/scheduling/schedules"
tags: ["Scheduling", "Public API"]
---

# List Schedules

`GET /api/v1/scheduling/schedules`

Retrieves a paginated list of all schedules for the company. Supports optional OData-style filtering and sorting.

OAuth Scopes: scheduling:schedules, time_tracking

## Query parameters

- `filter` string
- `sort` string
- `page` integer
- `pageSize` integer

## Response `200`

A list of schedules

- object
  - `data` SchedulingScheduleV1[] — Array of schedule resource objects
    - `id` string, uuid — The UUID of the schedule
    - `name` string — The name of the schedule
    - `locationId` integer — The ID of the location the schedule belongs to
    - `timezone` string — The timezone of the schedule, provide if location is missing timezone
    - `startOfWeek` string — The starting day of the week for the schedule
    - `earlyClockInThreshold` integer — The threshold (in minutes) that an employee is allowed to clock in early to a shift on this schedule
    - `lateClockInThreshold` integer — The threshold (in minutes) after a shift starts before an employee is considered late clocking in
    - `earlyClockOutThreshold` integer — The threshold (in minutes) before a shift ends within which an employee is considered to have clocked out early
    - `lateClockOutThreshold` integer — The threshold (in minutes) after a shift ends before an employee is considered to have clocked out late
    - `managerUserIds` integer[] — What users manage this schedule
    - `employeeIds` integer[] — What employees are assigned to this schedule
    - `createdAt` string, date-time — UTC timestamp when the schedule was created
    - `updatedAt` string, date-time, nullable — UTC timestamp when the schedule was last updated
    - `deletedAt` string, date-time, nullable — UTC timestamp when the schedule was deleted
  - `meta` object
    - `totalItems` integer — Total number of schedules matching the filter.
    - `page` integer — Current page number.
    - `pageSize` integer — Number of items per page.
  - `_links` object
    - `prev` object, nullable — Link to the previous page, or null if on the first page.
      - `href` string — URL for the previous page.
    - `next` object, nullable — Link to the next page, or null if on the last page.
      - `href` string — URL for the next page.

## Other responses

- `400` — Bad request - invalid filter, sort, or pagination parameters.
- `403` — Forbidden - insufficient permissions.
- `422` — Unprocessable entity - invalid filter or sort syntax.

---

[API](https://skmtc.net/bamboohr/apis/bamboohr-api.md) · [All operations](https://skmtc.net/bamboohr/apis/bamboohr-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bamboohr/bamboohr-api/versions/19ebf391a399/schema)
