Schedule and API task management and execution.
All management endpoints require READ_WRITE.
/task/api/:key is public by access key.
| Value | Notes |
|---|---|
| schedule | Scheduled tasks |
| api | API-triggered tasks |
Create a task.
| Name | Type | Required | Notes |
|---|---|---|---|
| taskType | string | No | schedule | api |
| Name | Type | Required | Notes |
|---|---|---|---|
| name | string | Yes | Task name. |
| cron | string | No | Required for schedule tasks. |
| logicId | string | Yes | TaskLogicEnum value. |
| params | object | No | Task parameters. |
| isEnabled | boolean | No | Enable flag. |
List tasks.
Return the TaskLogicList array.
Fetch a task by id.
Update a task by id.
Delete a task by id.
Fetch task logs.
Execute task logic by task name.
Execute an API task via its access key.