Creating a Schedule
Send aPOST request to create a cron schedule for a deployed application. The schedule starts immediately after creation.
Request fields
The response returns a
schedule_id. Save this — it is required to delete the schedule later.
The minimum allowed interval is 60 seconds.
* * * * * (every minute) is the fastest supported expression. Sub-minute expressions are rejected with a 400 error.Listing Schedules
Retrieve all cron schedules for an application:Response fields
next_fire_time_ms and last_fired_at_ms are standard Unix millisecond timestamps. In JavaScript: new Date(next_fire_time_ms).
Deleting a Schedule
cron_expression from the list response to pre-populate the new request.
Limits
Related
Observability
Monitor scheduled invocations alongside the rest of your application activity.
Retries
Configure automatic retries for functions triggered by the scheduler.
Secrets
Pass secrets securely to functions that run on a schedule.