Update Bot Task
neuron_update_taskUpdate a scheduled task's instruction, schedule, timezone, enabled state, or config. Only provided fields change.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | UUID of the task | |
| title | No | ||
| config | No | Safety / execution config for the task. | |
| enabled | No | ||
| schedule | No | Schedule payload matching scheduleKind. cron: { time: 'HH:MM', days?: number[] } (0=Sunday..6=Saturday; empty/omitted = every day). interval: { everyMinutes: number }. once: { runAt: ISO8601 string }. manual: {}. | |
| timezone | No | ||
| instruction | No | ||
| scheduleKind | No | cron = recurring at a clock time (slot); interval = every N minutes; once = a single future moment; manual = only runs on demand. |