todoist_update_section
Modify the name of a specific section in Todoist by providing its ID and the updated section name for better task organization.
Instructions
Updates a section in Todoist
Args: section_id: ID of the section to update name: New name for the section
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
section_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"section_id": {
"title": "Section Id",
"type": "string"
}
},
"required": [
"section_id",
"name"
],
"title": "todoist_update_sectionArguments",
"type": "object"
}