clickup_merge_tasks
Merge duplicate tasks into a single canonical task by combining content and closing source tasks, keeping the target task's identity.
Instructions
Merge one or more source tasks into a target task.
Calls POST /task/{task_id}/merge with {"source_task_ids": [...]}. The
target keeps its id; each source task's content is folded in and the source is
closed. Custom Task IDs are not supported here — use internal ids.
When to Use:
To consolidate duplicate tasks into a single canonical task.
When NOT to Use:
To move a task between Lists — use
clickup_move_task.
Returns: A confirmation string naming the target and merged source ids. (Destructive: the source tasks are consumed.)
Examples:
params = {"task_id": "86target", "source_task_ids": ["86dupA", "86dupB"]}
Error Handling: 404 means the target or a source id is wrong.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |