todoist_create_section
Use this tool to create a new section in a Todoist project by specifying the section name and project ID. Optionally, set the section order for better task organization.
Instructions
Create a new section in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the section | |
order | No | Order of the section (optional) | |
projectId | Yes | The project ID where the section will be created |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the section",
"type": "string"
},
"order": {
"description": "Order of the section (optional)",
"type": "number"
},
"projectId": {
"description": "The project ID where the section will be created",
"type": "string"
}
},
"required": [
"name",
"projectId"
],
"type": "object"
}