Building flows
Cron
A trigger that starts a flow on a schedule.
The cron trigger runs the flow on a recurring schedule.
Spec
| Field | Meaning |
|---|---|
schedule | Required. A 5-field cron expression that sets when the flow runs. |
{ "slug": "daily", "type": "cron", "spec": { "schedule": "0 9 * * *" } }The expression is standard 5-field cron: minute, hour, day-of-month, month, day-of-week.
