Schedule
Update a schedule
Updates a schedule and returns the updated schedule. Available only on schedules associated with GitHub OAuth or Bitbucket Cloud pipeline definitions. To update schedule triggers for GitHub App pipeline definitions, use the Update trigger endpoint.
patch/schedule/{schedule-id}
Path parameters
schedule-idstring uuid required
The unique ID of the schedule.
Request body
Example request
{
"attribution-actor": "current",
"parameters": {
"deploy_prod": true,
"branch": "feature/design-new-api"
}
}Response
A schedule object.
Example response
{
"project-slug": "gh/CircleCI-Public/api-preview-docs",
"parameters": {
"deploy_prod": true,
"branch": "feature/design-new-api"
}
}