
Todoist UpdateTask
CertifiedUpdate Todoist task fields
Todoist UpdateTask
Update Todoist task fields
Updates a Todoist task via /tasks/{id} with new content, description, priority, or due string. At least one field is required or the task fails.
type: io.kestra.plugin.todoist.UpdateTaskExamples
Update task content
id: todoist_update_task
namespace: company.team
tasks:
- id: update_task
type: io.kestra.plugin.todoist.UpdateTask
apiToken: "{{ secret('TODOIST_API_TOKEN') }}"
taskId: "7498765432"
content: "Updated task title"
Update task priority and due date
id: todoist_update_task_priority
namespace: company.team
tasks:
- id: update_task_priority
type: io.kestra.plugin.todoist.UpdateTask
apiToken: "{{ secret('TODOIST_API_TOKEN') }}"
taskId: "7498765432"
priority: 4
dueString: "tomorrow"
Properties
apiToken *Requiredstring
Provide Todoist API token
Personal API token sent as Bearer auth to Todoist API v1. Keep it in a Kestra Secret; required for all Todoist tasks.
taskId *Requiredstring
Task ID
Todoist task ID to update
content string
Task content
New task title
dueString string
Due string
Natural-language due date (e.g., 'tomorrow', 'next Monday', '2025-12-31')
pluginDefaultsRef Non-dynamicstring
Reference (ref) of the pluginDefaults to apply to this task.
priority integerstring
Priority
Priority 1 (highest) to 4 (lowest)
taskDescription string
Task description
New description
Outputs
taskId string
Task ID
The ID of the updated task