aeontel schedule

Manage schedules

Schedule commands

aeontel schedule list

List schedules in a workspace

TypeScript
aeontel schedule list --workspace <id>
Shell
aeontel schedule list --workspace wsp_...

aeontel schedule create

Create a schedule

TypeScript
aeontel schedule create <name> --workspace <id> --cron <expr> [--timezone <tz>] [--missed-run-policy <policy>] [--disabled]
Shell
aeontel schedule create "My name" --workspace wsp_... --cron <expr>

aeontel schedule get

Get schedule details

TypeScript
aeontel schedule get <id>
Shell
aeontel schedule get id_...

aeontel schedule update

Update a schedule

TypeScript
aeontel schedule update <id> [--name <name>] [--cron <expr>] [--timezone <tz>] [--missed-run-policy <policy>] [--enabled] [--disabled]
Shell
aeontel schedule update id_...

aeontel schedule delete

Soft-delete a schedule (dependent listeners are cleaned up; restorable until retention expires)

TypeScript
aeontel schedule delete <id>
Shell
aeontel schedule delete id_...

aeontel schedule fire

Fire a schedule now (testing). Emits schedule.fired without advancing nextRunAt; works even when disabled.

TypeScript
aeontel schedule fire <id>
Shell
aeontel schedule fire id_...

aeontel schedule restore

Restore a soft-deleted schedule

TypeScript
aeontel schedule restore <id>
Shell
aeontel schedule restore id_...