---
title: "List Schedules"
method: GET
path: "/playground/schedules"
tags: ["AI_PLAYGROUND", "SCHEDULES"]
---

# List Schedules

`GET /playground/schedules`

List schedules.

- If session_id is provided, returns schedules for that session
- Otherwise, returns all schedules created by the current user

## Query parameters

- `session_id` string, nullable

## Response `200`

Successful Response

- AppSchemasAiPlaygroundSchedulesScheduleListResponse — Response containing a list of schedules.
  - `schedules` AppSchemasAiPlaygroundSchedulesScheduleResponse[], required
    - `id` string, uuid, required
    - `name` string, required
    - `session_id` string, required
    - `content_scope` 'first_query' | 'last_answer' | 'full_chat', required — What content to include in the scheduled report.
    - `cron_expr` string, required
    - `destination_type` 'email' | 'slack' | 'multi', required — How to deliver the scheduled report. Derived from `destination_config` at save time — `MULTI` means both emails and a Slack webhook are configured on the same schedule.
    - `emails` string[], required
    - `slack_webhook_id` integer, nullable
    - `enabled` boolean, required
    - `last_run` string, date-time, nullable, required
    - `next_run` string, date-time, nullable, required
    - `created_by` integer, required
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required
    - `day_of_week` integer, nullable — Cron weekday (0=Sunday … 6=Saturday) when frequency is weekly
    - `day_of_month` integer, nullable — Cron day-of-month (1-31) when frequency is monthly
  - `total` integer, required

## Other responses

- `422` — Validation Error

---

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