---
title: "List schema refresh schedules"
method: GET
path: "/v1/connections/{connectionId}/schedules"
tags: ["Schema refresh schedules"]
---

# List schema refresh schedules

`GET /v1/connections/{connectionId}/schedules`

Retrieve all schema refresh schedules configured for the specified connection. Each schedule uses a cron expression and timezone to define when the schema should be refreshed.

<Note>
  This endpoint requires Connection Admin permissions for the connection.
</Note>

## Path parameters

- `connectionId` string, uuid, required

## Response `200`

Successfully retrieved schema refresh schedules

- object
  - `schedules` SchemaRefreshSchedule[]
    - `scheduleId` string, uuid — The unique identifier of the schema refresh schedule
    - `connectionId` string, uuid — The unique identifier of the connection this schedule belongs to
    - `schedule` string — A 6-field cron expression in AWS EventBridge format defining when the schema refresh should run. Format: `minute hour day-of-month month day-of-week year`
    - `timezone` string — The IANA timezone identifier for when the schedule should run
    - `description` string — A human-readable description of the schedule, automatically generated from the cron expression and timezone
    - `hardRefresh` boolean — Whether the scheduled refresh performs a hard refresh (removes dropped objects) or soft refresh (additive only). Defaults to false (soft refresh).
    - `createdAt` string, date-time — The timestamp when the schedule was created
    - `updatedAt` string, date-time — The timestamp when the schedule was last updated
    - `disabledAt` string, date-time, nullable — The timestamp when the schedule was disabled, or `null` if active

## Other responses

- `401` — Missing or invalid authentication
- `403` — Insufficient permissions. **Connection Admin** permissions for the connection are required.
- `404` — Not Found - Resource does not exist
- `429` — Too Many Requests - Rate limit exceeded (60 requests/minute)

---

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