List Schedules
Returns all schedules.Response
Array of schedule objects
Create Schedule
Creates a new schedule.Request Body
Project ID to associate with
Schedule name
Array of pipeline IDs to execute
Cron expression defining the scheduleExamples:
"0 * * * *"- Every hour"0 0 * * *"- Daily at midnight"0 2 * * MON"- Every Monday at 2 AM"*/15 * * * *"- Every 15 minutes
Whether schedule is enabled (defaults to true)
Response
Returns the created schedule object.Get Schedule
Returns a single schedule by ID.Path Parameters
Schedule ID
Response
Returns the schedule object (see List Schedules for schema).Update Schedule
Updates a schedule’s configuration.Path Parameters
Schedule ID
Request Body
All fields are optional. Only provided fields will be updated.New name
New pipelines array (replaces existing)
New cron expression
New enabled status
Response
Returns the updated schedule object.Delete Schedule
Deletes a schedule.Path Parameters
Schedule ID
Response
Returns204 No Content on success.