Blocks for creating, updating, and managing tasks in Todoist.
Todoist Close Task
Closes a task in Todoist
Uses task ID to mark it complete via Todoist API.
Input
Description
Type
Required
Error message if the operation failed
Whether the task was successfully closed
Possible use case
Marking tasks as done in automated workflows.
Todoist Create Task
Creates a new task in a Todoist project
Takes task details and creates a new task via Todoist API.
Input
Description
Type
Required
Project ID this task should belong to
Section ID this task should belong to
Optional order among other tasks,[Non-zero integer value used by clients to sort tasks under the same parent]
Task priority from 1 (normal) to 4 (urgent)
Due date in YYYY-MM-DD format
Specific date in YYYY-MM-DD format relative to user's timezone
Task duration unit (minute/day)
Task duration amount, You need to selecct the duration unit first
Error message if the operation failed
Complete task data as dictionary
Possible use case
Creating new tasks with full customization of parameters.
Todoist Delete Task
Deletes a task in Todoist
Uses task ID to delete via Todoist API.
Input
Description
Type
Required
Error message if the operation failed
Whether the task was successfully deleted
Possible use case
Removing unwanted or obsolete tasks from the system.
Todoist Get Task
Get an active task from Todoist
This block retrieves a single active task from Todoist using the task's unique ID. It queries the Todoist REST API and returns comprehensive task details including content, description, due dates, labels, and project association.
Only active (uncompleted) tasks can be retrieved; closed tasks are not accessible through this endpoint.
Input
Description
Type
Required
Error message if the operation failed
Project ID containing the task
Complete task data as dictionary
Possible use case
Task Details Retrieval: Fetch complete information about a specific task for display or processing in workflows.
Workflow Branching: Get task details to make decisions based on due dates, labels, or priority levels.
Task Auditing: Retrieve individual tasks to verify their current state before performing updates or other operations.
Todoist Get Tasks
Get active tasks from Todoist
Queries Todoist API with provided filters to get matching tasks.
Input
Description
Type
Required
Filter tasks by project ID
Filter tasks by section ID
Filter tasks by label name
Filter by any supported filter, You can see How to use filters or create one of your one here - https://todoist.com/help/articles/introduction-to-filters-V98wIH
IETF language tag for filter language
List of task IDs to retrieve
Error message if the operation failed
Complete task data as dictionary
Possible use case
Retrieving tasks matching specific criteria for review or processing.
Todoist Reopen Task
Reopens a task in Todoist
Uses task ID to reactivate via Todoist API.
Input
Description
Type
Required
Error message if the operation failed
Whether the task was successfully reopened
Possible use case
Reactivating tasks that were closed accidentally or need to be repeated.
Todoist Update Task
Updates an existing task in Todoist
Takes task ID and updated fields, applies changes via Todoist API.
Input
Description
Type
Required
Project ID this task should belong to
Section ID this task should belong to
Optional order among other tasks,[Non-zero integer value used by clients to sort tasks under the same parent]
Task priority from 1 (normal) to 4 (urgent)
Due date in YYYY-MM-DD format
Specific date in YYYY-MM-DD format relative to user's timezone
Task duration unit (minute/day)
Task duration amount, You need to selecct the duration unit first
Error message if the operation failed
Whether the update was successful
Possible use case
Modifying task details like due dates, priority etc.