Skip to content
For LLMsView as Markdown·

Todoist

Manage tasks, projects, labels, and comments in the Todoist task manager.

DetailValue
CategoryProductivity
Base URLhttps://api.todoist.com/rest/v2
AuthenticationBearer Token
Endpoints5
Connector keytodoist

Using Todoist in a workflow

  1. Go to Connections and click New Connection.
  2. Pick Todoist from the marketplace.
  3. Enter your credentials (see Authentication above for what's expected).
  4. In a workflow, drop an API Call node and select this connection.
  5. Pick the operation you need from the Operation dropdown — the full list is below.

Available endpoints

EndpointSummary
GET /tasksGet active tasks
POST /tasksCreate a task
POST /tasks/{taskId}/closeComplete a task
GET /projectsList projects
POST /projectsCreate a project

Each endpoint is documented in full below. Use the outline on the right to jump to one.

GET /tasks

Get active tasks

DetailValue
Operation IDproductivity.listTasks
MethodGET
Path/tasks

Parameters

NameLocationTypeRequired
project_idquerystringNo

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Todoist connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.listTasks.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Todoist API reference.

POST /tasks

Create a task

DetailValue
Operation IDproductivity.createTask
MethodPOST
Path/tasks

Parameters

No parameters.

Request Body

FieldType
contentstring
priorityinteger

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Todoist connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.createTask.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Todoist API reference.

POST /tasks/{taskId}/close

Complete a task

DetailValue
Operation IDproductivity.closeTask
MethodPOST
Path/tasks/{taskId}/close

Parameters

NameLocationTypeRequired
taskIdpathstringYes

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Todoist connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.closeTask.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Todoist API reference.

GET /projects

List projects

DetailValue
Operation IDproductivity.listProjects
MethodGET
Path/projects

Parameters

No parameters.

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Todoist connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.listProjects.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Todoist API reference.

POST /projects

Create a project

DetailValue
Operation IDproductivity.createProject
MethodPOST
Path/projects

Parameters

No parameters.

Request Body

FieldType
namestring

Using this endpoint in a workflow

  1. Add an API Call node to your workflow.
  2. Pick your Todoist connection from the Connection dropdown.
  3. In the Operation dropdown, select productivity.createProject.
  4. Fill in the parameter fields that appear. Use {{...}} to reference upstream values.

Required fields are marked — fill them or the call will fail at runtime.

What it returns

The API Call node writes the response to the workflow context:

{
  status: 200,
  success: true,
  data: { ...response body from the API... },
  latencyMs: 142
}

Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Todoist API reference.