todoist_add_section
Create and organize sections in Todoist projects by specifying name, project ID, and optional order. Simplify task management with structured project layouts.
Instructions
Create a new section in Todoist
Args: name: Section name project_id: Project ID this section should belong to order: Order among other sections in a project (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
order | No | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"order": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Order"
},
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"name",
"project_id"
],
"title": "todoist_add_sectionArguments",
"type": "object"
}