todoist_task_create
Create a task in Todoist with content, optional description, due date, priority, labels, deadline, project, section, and duration for time blocking.
Instructions
Create a new task in Todoist with optional description, due date, priority, labels, deadline, project, section, and duration for time blocking
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | The content/title of the task | |
| description | No | Detailed description of the task (optional) | |
| due_string | No | Natural language due date like 'tomorrow', 'next Monday', 'Jan 23' (optional) | |
| priority | No | Task priority from 1 (highest) to 4 (lowest) (optional) | |
| labels | No | Array of label names to assign to the task (optional) | |
| deadline_date | No | Task deadline in YYYY-MM-DD format (when user mentions 'deadline') (optional) | |
| project_id | No | Project ID to assign the task to (optional) | |
| section_id | No | Section ID within the project to assign the task to (optional) | |
| duration | No | Task duration amount for time blocking (e.g., 30 for 30 minutes, 2 for 2 days). REQUIRES due_string with a time (e.g., 'tomorrow at 2pm') (optional) | |
| duration_unit | No | Duration unit: 'minute' or 'day'. Defaults to 'minute' if duration is provided. Duration requires due_string with a time (optional) | |
| child_order | No | Position of the task among its siblings (for ordering within parent or project) (optional) | |
| day_order | No | Position of the task in Today view (only works for tasks due today) (optional) | |
| is_collapsed | No | Whether the task's subtasks should be collapsed/hidden in the UI (optional) |