Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sequentum.com/llms.txt

Use this file to discover all available pages before exploring further.

A Schedule is a trigger attached to an Agent that fires Runs on a recurring cadence. Every Schedule belongs to exactly one Agent and uses one of three trigger types.

Schedule types

TypeWhen it firesUse it for
CRONOn a CRON expression (e.g., 0 9 * * 1-5 for 9am on weekdays).Production cadences.
RunEveryEvery N minutes / hours / days from an anchor time.”Every 6 hours” patterns.
RunOnceExactly once at a specified UTC time.One-off scheduled runs.
The integer values on the wire are RunOnce = 1, RunEvery = 2, CRON = 3.

Enable, disable, delete

A Schedule has an enabled flag. Disabling prevents future fires without deleting the configuration — the right move when you want to pause without losing setup.

API

See Schedules in the API reference for create, list, read, update, delete, enable, and disable endpoints.
If a Schedule fires while its Agent is archived, the resulting Run has terminal status Skipped (11). Unarchive the Agent to resume.