Skip to main content
POST
/
api
/
v1
/
schedules
/
{schId}
/
trigger
curl -X POST \
  -H "Authorization: Bearer alf_your_key_here" \
  /api/v1/schedules/curator-hourly/trigger
{
  "message": "Schedule triggered"
}
Immediately trigger a workflow execution from a schedule, bypassing the normal cron timing. The schedule’s configured overlap policy is respected. This is useful for on-demand runs without waiting for the next scheduled time.
schId
string
required
The schedule ID to trigger
curl -X POST \
  -H "Authorization: Bearer alf_your_key_here" \
  /api/v1/schedules/curator-hourly/trigger
{
  "message": "Schedule triggered"
}