CreateTaskCreateTask
CreateTaskCertified

yaml
type: "io.kestra.plugin.todoist.CreateTask"
yaml
id: todoist_create_task
namespace: company.team

tasks:
  - id: create_task
    type: io.kestra.plugin.todoist.CreateTask
    apiToken: "{{ secret('TODOIST_API_TOKEN') }}"
    content: "Review pull requests"

yaml
id: todoist_create_urgent_task
namespace: company.team

tasks:
  - id: create_urgent_task
    type: io.kestra.plugin.todoist.CreateTask
    apiToken: "{{ secret('TODOIST_API_TOKEN') }}"
    content: "Deploy to production"
    taskDescription: "Deploy version 2.0 after testing"
    priority: 1
    dueString: "tomorrow"
Properties