Skip to main content
POST
/
api
/
v1
/
schedules
/
{schId}
/
unpause
curl -X POST \
  -H "Authorization: Bearer alf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "reason": "Vault migration complete"
  }' \
  /api/v1/schedules/curator-hourly/unpause
{
  "message": "Schedule unpaused"
}
Resume a paused workflow schedule. Once unpaused, the schedule will begin executing again according to its configured cron expression.
schId
string
required
The schedule ID to unpause
reason
string
Human-readable reason for unpausing. Recorded on the schedule for reference.
curl -X POST \
  -H "Authorization: Bearer alf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "reason": "Vault migration complete"
  }' \
  /api/v1/schedules/curator-hourly/unpause
{
  "message": "Schedule unpaused"
}