ticktick_create_task_template
Create reusable task templates in TickTick with defined name, description, priority, and tags. Save task structures for efficient project management and team collaboration.
Instructions
Create reusable template
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Template category | general |
| is_shared | No | Share template with team | |
| task_data | Yes | Task structure to save as template | |
| template_description | No | Description of the template | |
| template_name | Yes | Name of the template |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": "general",
"description": "Template category",
"type": "string"
},
"is_shared": {
"default": false,
"description": "Share template with team",
"type": "boolean"
},
"task_data": {
"description": "Task structure to save as template",
"properties": {
"description": {
"type": "string"
},
"estimated_duration": {
"type": "number"
},
"priority": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
},
"template_description": {
"description": "Description of the template",
"type": "string"
},
"template_name": {
"description": "Name of the template",
"type": "string"
}
},
"required": [
"template_name",
"task_data"
],
"type": "object"
}