ticktick_update_task_template
Update task templates, including name, description, task structure, and category, using the TickTick MCP Server. Essential for refining and managing task workflows efficiently.
Instructions
Modify template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Updated category | |
task_data | No | Updated task structure | |
template_description | No | Updated description | |
template_id | Yes | ID of template to update | |
template_name | No | Updated template name |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Updated category",
"type": "string"
},
"task_data": {
"description": "Updated task structure",
"type": "object"
},
"template_description": {
"description": "Updated description",
"type": "string"
},
"template_id": {
"description": "ID of template to update",
"type": "string"
},
"template_name": {
"description": "Updated template name",
"type": "string"
}
},
"required": [
"template_id"
],
"type": "object"
}