Scheduler
Create a Schedule
Set up a cron schedule for automatic connector sync.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Set up a cron schedule for automatic connector sync.
┌───────── minute (0–59)
│ ┌─────── hour (0–23)
│ │ ┌───── day of month (1–31)
│ │ │ ┌─── month (1–12)
│ │ │ │ ┌─ day of week (0–7, 0 and 7 = Sunday)
│ │ │ │ │
* * * * *
| Schedule | Cron |
|---|---|
| Every day at 6am UTC | 0 6 * * * |
| Every Monday at 8am UTC | 0 8 * * 1 |
| Every 6 hours | 0 */6 * * * |
curl -X POST https://api.flexorch.com/v1/connectors/{connector_id}/schedules \
-H "X-API-KEY: dfx_your_key_here" \
-H "Content-Type: application/json" \
-d '{
"cron": "0 6 * * *",
"prefix": "documents/incoming/",
"name": "Daily document sync"
}'
curl -X POST https://api.flexorch.com/v1/connectors/{connector_id}/schedules/{schedule_id}/trigger \
-H "X-API-KEY: dfx_your_key_here"