ticktick_merge_tags
Merge two tags into one by transferring tasks from a source tag to a target tag. Simplifies task organization and reduces tag clutter in TickTick.
Instructions
Merge two tags into one
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source_tag_id | Yes | ID of the tag to merge from | |
| target_tag_id | Yes | ID of the tag to merge into |
Input Schema (JSON Schema)
{
"properties": {
"source_tag_id": {
"description": "ID of the tag to merge from",
"type": "string"
},
"target_tag_id": {
"description": "ID of the tag to merge into",
"type": "string"
}
},
"required": [
"source_tag_id",
"target_tag_id"
],
"type": "object"
}