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

# Get schema refresh schedule

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

Retrieve the details of a connection's specific schema refresh schedule.

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

## Path parameters

- `connectionId` string, uuid, required
- `scheduleId` string, uuid, required

## Response `200`

Successfully retrieved schema refresh schedule

- 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 Possible error messages: - Schedule not found - Schedule belongs to a different connection
- `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/revisions/6b02f7349d0e/schema)
