get_sections
Retrieve project sections from Todoist to organize and categorize tasks within specific projects for better task management.
Instructions
Get sections from a project.
Args:
project_id: Project ID to get sections from (optional)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | No |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Project Id"
}
},
"type": "object"
}