ticktick_add_tag_to_task
Assign a tag to a specific task in TickTick using the task ID and tag name. Simplify task organization and enhance productivity by categorizing tasks effectively.
Instructions
Add a tag to a specific task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tag_name | Yes | Name of the tag to add | |
| task_id | Yes | ID of the task |
Input Schema (JSON Schema)
{
"properties": {
"tag_name": {
"description": "Name of the tag to add",
"type": "string"
},
"task_id": {
"description": "ID of the task",
"type": "string"
}
},
"required": [
"task_id",
"tag_name"
],
"type": "object"
}