Skip to main content

Run work on a schedule

Section: DOC-CP-scheduling#run-work-on-a-schedule.

Send a weekday digest, deliver a reminder at a chosen time, or refresh application data at a regular interval. Create a job that calls your endpoint on that schedule, then follow its delivery history and recover failed attempts.

Start here​

Section: DOC-CP-scheduling#start-here.

Build this featureRecipe
Generate a weekday briefing for a userAutomate recurring agent work
Call your application at a chosen timeCreate a reminder or calendar job
Let a user reschedule, pause or remove a reminderManage the reminder lifecycle
Recover a reminder that failed to reach your appTrace execution and retries
Implement the callback receiver used by these recipesAccept authenticated callbacks safely

How it works​

Section: DOC-CP-scheduling#how-it-works.

For a daily briefing, the scheduler calls your backend at the selected time; your backend accepts the firing, performs the work and records its business result.

  1. Build a callback receiver that verifies the signed request and saves accepted work durably.
  2. Create the job with that receiver, the intended user and a calendar/timezone or one-time timestamp.
  3. Save the returned schedule identifier and show the next trigger time in your application.
  4. Follow the first firing through execution history and your receiver’s business outcome.
  5. Give the user a way to change or stop future firings, while accounting separately for work already accepted.

A successful scheduler execution means your receiver acknowledged delivery. It does not prove the briefing was generated or shown to the user. The agent briefing recipe connects those later steps.

Choose when the work should run​

Section: DOC-CP-scheduling#schedule-types.

Your application needsRecipe variant
A weekday digest at the user’s local timeUse a calendar schedule
One reminder at a chosen instantUse a one-time schedule
A refresh at regular elapsed intervalsUse an interval schedule

The timing reference defines timezone handling and field defaults.

Section: DOC-CP-scheduling#related.

Document ID: DOC-CP-scheduling. Section identities and revisions.