cueapi_create_cue
Schedule automated jobs or webhook callbacks using cron expressions or one-time triggers to execute tasks at specified intervals.
Instructions
Create a new CueAPI cue — a scheduled job that fires a callback (or enqueues worker work) on a cron or one-time trigger.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Human-readable cue name | |
| cron | No | Cron expression for a recurring cue (e.g. '0 9 * * *') | |
| at | No | ISO-8601 timestamp for a one-time cue | |
| callback_url | No | Webhook URL fired when the cue triggers (omit for worker mode) | |
| worker | No | If true, use worker transport — no callback URL needed | |
| timezone | No | IANA timezone, default 'UTC' | |
| payload | No | Arbitrary JSON payload delivered with the cue | |
| description | No |