clickup_task_remove_dep
Remove dependency relationships between ClickUp tasks by specifying task IDs and dependency direction to clean up project workflows.
Instructions
Remove an existing dependency relationship between two tasks. Provide exactly one of depends_on or dependency_of, matching the direction you set with clickup_task_add_dep. The tasks themselves are not affected. Returns an empty object on success.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dependency_of | No | ID of the downstream task to detach (removes the 'this waits for task_id' edge). Mutually exclusive with depends_on. | |
| depends_on | No | ID of the upstream task to detach from task_id (removes the 'task_id waits for this' edge). Mutually exclusive with dependency_of. | |
| task_id | Yes | ID of the primary task in the dependency. Obtain from clickup_task_list (field: id) or clickup_task_get (field: dependencies[]). |