Skip to main content
POST
/
api
/
v1
/
schedules
/
{schId}
/
pause
curl -X POST \
  -H "Authorization: Bearer alf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "reason": "Paused during vault migration"
  }' \
  /api/v1/schedules/curator-hourly/pause
{
  "message": "Schedule paused"
}
Pause a workflow schedule to temporarily stop new executions from being started. Currently running workflows are not affected. Use unpause to resume the schedule.
schId
string
required
The schedule ID to pause
reason
string
Human-readable reason for pausing. Recorded on the schedule for reference.
curl -X POST \
  -H "Authorization: Bearer alf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "reason": "Paused during vault migration"
  }' \
  /api/v1/schedules/curator-hourly/pause
{
  "message": "Schedule paused"
}