create_task
Add new tasks to Todoist with content, due dates, priorities, and labels to organize your workflow.
Instructions
Create a new task in Todoist.
Priorities don't map directly to Todoist priorities, but are mapped as follows:
1 = low
2 = medium
3 = high
4 = urgent
This is done to map better to how people think about priorities.
Args:
content: The task content/title (required)
description: Task description (optional)
project_name: Project name to add task to
due_string: Due date in natural language like "tomorrow", "next monday" (optional)
priority: Priority level 1-4 (1=low, 2=medium, 3=high, 4=urgent)
labels: List of label names to add to the task (optional)
Returns:
Dict containing the created task details or error message
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | ||
| description | No | ||
| project_name | No | ||
| due_string | No | ||
| priority | No | ||
| labels | No |