---
title: "List all schedulers"
method: GET
path: "/schedulers"
tags: ["Schedulers"]
---

# List all schedulers

`GET /schedulers`

## Query parameters

- `cursor` string — Pagination cursor
- `limit` number, nullable — Maximum number of schedulers to return (max 100)
- `status` string — Comma-separated list of statuses to filter by (idle, starting, active, stopping, terminated)
- `sortBy` 'name' | 'status' | 'startDate' | 'startTime' — Sort field
- `sortDirection` 'asc' | 'desc' — Sort direction

## Response `200`

List of schedulers

- PaginatedSchedulerResult
  - `data` Scheduler[], required — List of schedulers
    - `id` string, required — Unique identifier of the scheduler
    - `name` string, required — Name of the scheduler
    - `createdAt` string, required — Creation timestamp
    - `updatedAt` string, required — Last update timestamp
    - `enabled` boolean, required — Whether the scheduler is enabled
    - `startDate` string, required — Start date (YYYY-MM-DD)
    - `startTime` string, required — Start time (HH:mm)
    - `endDate` string — End date (YYYY-MM-DD)
    - `endTime` string — End time (HH:mm)
    - `recurrence` string — RRULE recurrence string
    - `timeZone` string, required — IANA time zone
    - `channelIds` string[], required — Channel IDs
    - `channels` SchedulerChannelSelection[], required — Channels with optional engine selection (engineIds omitted = all engines)
      - `channelId` string, required — Channel ID
      - `engineIds` string[] — Engine IDs of this channel to start/stop. Omit to include all engines of the channel.
  - `pagination` object, required — Pagination info
    - `hasMore` boolean, required — Whether more results are available
    - `cursor` string, required — Cursor for the next page of results

---

[API](https://skmtc.net/dolby/apis/theolive-api.md) · [All operations](https://skmtc.net/dolby/apis/theolive-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dolby/theolive-api/revisions/3dc30dd23624/schema)
