docs/integrations/block-integrations/todoist/sections.md
Blocks for managing sections within Todoist projects.
<!-- END MANUAL -->Deletes a section and all its tasks from Todoist
Uses section ID to delete via Todoist API.
<!-- END MANUAL -->| Input | Description | Type | Required |
|---|---|---|---|
| section_id | ID of section to delete | str | Yes |
| Output | Description | Type |
|---|---|---|
| error | Error message if the operation failed | str |
| success | Whether section was successfully deleted | bool |
Removing unused sections or reorganizing projects.
<!-- END MANUAL -->Gets a single section by ID from Todoist
Uses section ID to retrieve details via Todoist API.
<!-- END MANUAL -->| Input | Description | Type | Required |
|---|---|---|---|
| section_id | ID of section to fetch | str | Yes |
| Output | Description | Type |
|---|---|---|
| error | Error message if the operation failed | str |
| id | ID of section | str |
| project_id | Project ID the section belongs to | str |
| order | Order of the section | int |
| name | Name of the section | str |
Looking up section details for task management.
<!-- END MANUAL -->Gets all sections and their details from Todoist
Connects to Todoist API to retrieve sections list.
<!-- END MANUAL -->| Input | Description | Type | Required |
|---|---|---|---|
| project_id | Optional project ID to filter sections | str | Yes |
| Output | Description | Type |
|---|---|---|
| error | Error message if the operation failed | str |
| names_list | List of section names | List[str] |
| ids_list | List of section IDs | List[str] |
| complete_data | Complete section data including all fields | List[Dict[str, Any]] |
Getting section information for task organization.
<!-- END MANUAL -->