todoist_get_sections
Retrieve sections from a Todoist account to organize tasks by project. Filter sections by project ID for targeted task management and improved workflow efficiency.
Instructions
Get all sections from the user's Todoist account
Args: project_id: Filter sections by project ID (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"
}
},
"title": "todoist_get_sectionsArguments",
"type": "object"
}