> ## Documentation Index
> Fetch the complete documentation index at: https://nango-wari-migrated-bigcommerce-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Todoist

## Overview

<CardGroup cols={3}>
  <Card title="Pre-built tooling" icon="screwdriver-wrench" href="#pre-built-tooling" />

  <Card title="Pre-built integrations" icon="square-check" href="#pre-built-integrations" />

  <Card title="Access requirements" icon="triangle-exclamation" href="#access-requirements" />

  <Card title="Setup guide" icon="rocket" href="#setup-guide" />

  <Card title="Useful links" icon="circle-info" href="#useful-links" />

  <Card title="API gotchas" icon="biohazard" href="#api-gotchas" />
</CardGroup>

## Pre-built tooling

<AccordionGroup>
  <Accordion title="✅ Authorization">
    | Tools                           | Status |
    | ------------------------------- | ------ |
    | Pre-built authorization (OAuth) | ✅      |
    | Credentials auto-refresh        | ✅      |
    | Pre-built authorization UI      | ✅      |
    | Custom authorization UI         | ✅      |
    | Expired credentials detection   | ✅      |
  </Accordion>

  <Accordion title="✅ Read & write data">
    | Tools                                     | Status                         |
    | ----------------------------------------- | ------------------------------ |
    | Pre-built integrations                    | ✅                              |
    | API unification                           | ✅                              |
    | 2-way sync                                | ✅                              |
    | Webhooks from Nango on data modifications | ✅                              |
    | Real-time webhooks from 3rd-party API     | 🚫 (time to contribute: \<48h) |
    | Proxy requests                            | ✅                              |
  </Accordion>

  <Accordion title="✅ Observability & data quality">
    | Tools                   | Status |
    | ----------------------- | ------ |
    | HTTP request logging    | ✅      |
    | End-to-end type safety  | ✅      |
    | Data runtime validation | ✅      |
    | OpenTelemetry export    | ✅      |
    | Slack alerts on errors  | ✅      |
    | Integration status API  | ✅      |
  </Accordion>

  <Accordion title="✅ Customization">
    | Tools                              | Status                         |
    | ---------------------------------- | ------------------------------ |
    | Create or customize use-cases      | ✅                              |
    | Pre-configured pagination          | 🚫 (time to contribute: \<48h) |
    | Pre-configured rate-limit handling | 🚫 (time to contribute: \<48h) |
    | Per-customer configurations        | ✅                              |
  </Accordion>
</AccordionGroup>

### Others

| Function name                             | Description                                                                                                                                             | Type                                           | Source code                                                                                                                                     |
| ----------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
| `archive-project`                         | Archive a project.                                                                                                                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/archive-project.ts)                         |
| `close-task`                              | Mark a task complete (close it).                                                                                                                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/close-task.ts)                              |
| `create-comment`                          | Create a comment on a task or a project                                                                                                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/create-comment.ts)                          |
| `create-label`                            | Create a personal label.                                                                                                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/create-label.ts)                            |
| `create-project`                          | Create a project.                                                                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/create-project.ts)                          |
| `create-section`                          | Create a section.                                                                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/create-section.ts)                          |
| `create-task`                             | Create a task                                                                                                                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/create-task.ts)                             |
| `delete-comment`                          | Delete a comment                                                                                                                                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/delete-comment.ts)                          |
| `delete-label`                            | Delete a personal label.                                                                                                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/delete-label.ts)                            |
| `delete-project`                          | Delete a project.                                                                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/delete-project.ts)                          |
| `delete-section`                          | Delete a section.                                                                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/delete-section.ts)                          |
| `delete-task`                             | Delete a task.                                                                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/delete-task.ts)                             |
| `filter-tasks`                            | List tasks matching a Todoist filter query.                                                                                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/filter-tasks.ts)                            |
| `get-comment`                             | Retrieve a single comment.                                                                                                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/get-comment.ts)                             |
| `get-label`                               | Retrieve a single personal label.                                                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/get-label.ts)                               |
| `get-project`                             | Retrieve a single project.                                                                                                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/get-project.ts)                             |
| `get-section`                             | Retrieve a single section.                                                                                                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/get-section.ts)                             |
| `get-task`                                | Retrieve a single task.                                                                                                                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/get-task.ts)                                |
| `list-comments`                           | List comments on a task or a project.                                                                                                                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/list-comments.ts)                           |
| `list-completed-tasks-by-completion-date` | List tasks completed within a date range, filtered by when they were completed.                                                                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/list-completed-tasks-by-completion-date.ts) |
| `list-completed-tasks-by-due-date`        | List tasks completed within a date range, filtered by their original due date.                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/list-completed-tasks-by-due-date.ts)        |
| `list-labels`                             | List the current user's personal labels.                                                                                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/list-labels.ts)                             |
| `list-projects`                           | List projects.                                                                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/list-projects.ts)                           |
| `list-sections`                           | List sections, optionally scoped to a project.                                                                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/list-sections.ts)                           |
| `list-shared-labels`                      | List label names currently used across the user's tasks (not necessarily backed by a personal Label object).                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/list-shared-labels.ts)                      |
| `list-tasks`                              | List active (non-completed) Todoist tasks.                                                                                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/list-tasks.ts)                              |
| `move-task`                               | Move a task to a different project, section, or parent task.                                                                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/move-task.ts)                               |
| `quick-add-task`                          | Create a task from a single natural-language string (Todoist's quick-add parser: due dates, #project, @label, assignee, priority all parsed from text). | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/quick-add-task.ts)                          |
| `remove-shared-label`                     | Remove a label string from every task that references it                                                                                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/remove-shared-label.ts)                     |
| `rename-shared-label`                     | Rename a label string across every task that references it.                                                                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/rename-shared-label.ts)                     |
| `reopen-task`                             | Reopen (uncomplete) a task.                                                                                                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/reopen-task.ts)                             |
| `unarchive-project`                       | Unarchive a project.                                                                                                                                    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/unarchive-project.ts)                       |
| `update-comment`                          | Update a comment's content.                                                                                                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/update-comment.ts)                          |
| `update-label`                            | Update a personal label's name, color, order, or favorite flag.                                                                                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/update-label.ts)                            |
| `update-project`                          | Update a project's fields (name, color, favorite, view style, description).                                                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/update-project.ts)                          |
| `update-section`                          | Rename a section.                                                                                                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/update-section.ts)                          |
| `update-task`                             | Update a task's fields (content, description, labels, due date, priority, deadline, duration).                                                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/actions/update-task.ts)                             |
| `comments`                                | Sync comments across all known tasks and projects.                                                                                                      | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/syncs/comments.ts)                                  |
| `labels`                                  | Sync personal labels.                                                                                                                                   | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/syncs/labels.ts)                                    |
| `projects`                                | Sync projects.                                                                                                                                          | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/syncs/projects.ts)                                  |
| `sections`                                | Sync sections.                                                                                                                                          | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/syncs/sections.ts)                                  |
| `tasks`                                   | Sync active (non-completed) tasks.                                                                                                                      | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/todoist/syncs/tasks.ts)                                     |

## Access requirements

| Pre-Requisites    | Status | Comment |
| ----------------- | ------ | ------- |
| Paid dev account  | ❓      |         |
| Paid test account | ❓      |         |
| Partnership       | ❓      |         |
| App review        | ❓      |         |
| Security audit    | ❓      |         |

## Setup guide

*No setup guide yet.*

<Tip>Need help getting started? Get help in the [community](https://nango.dev/slack).</Tip>

<Note>Contribute improvements to the setup guide by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/todoist.mdx)</Note>

## Useful links

* [REST API docs](https://developer.todoist.com/rest)
* [Sync API docs](https://developer.todoist.com/sync)
* [Authorization guide](https://developer.todoist.com/guides/#authorization)
* [List of OAuth scopes](https://developer.todoist.com/guides/#step-1-authorization-request)
* [Information on rate limits for the REST API](https://developer.todoist.com/rest/v2/#request-limits)
* [Information on rate limits for the Sync API](https://developer.todoist.com/sync/v9/#request-limits)
* [Web API docs (their REST API)](https://developer.todoist.com/rest/v2/#overview)

<Note>Contribute useful links by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/todoist.mdx)</Note>

## API gotchas

<Note>Contribute API gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/todoist.mdx)</Note>
