clickup_task_update
Modify existing ClickUp tasks by updating name, description, status, priority, or assignees. Only specified fields are changed while others remain intact.
Instructions
Update fields on an existing ClickUp task — name, description, status, priority, and incrementally add/remove assignees. Only provided fields are changed; omitted fields keep their current value. For tags use clickup_task_add_tag/remove_tag; for moving between lists use clickup_task_move. Returns the updated task object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| add_assignees | No | User IDs to add as assignees (additive; does not replace existing assignees). Obtain from clickup_member_list. | |
| description | No | New task body — replaces the current description entirely. Markdown supported. Omit to keep current description. | |
| name | No | New task title. Omit to keep current name. | |
| priority | No | New priority: 1=Urgent, 2=High, 3=Normal, 4=Low. Omit to keep current priority. | |
| rem_assignees | No | User IDs to remove from assignees (no-op if the user is not currently assigned). | |
| status | No | New status name (case-sensitive, must match a status defined on the parent list). Omit to keep current status. | |
| task_id | Yes | ID of the task to update. Obtain from clickup_task_list (field: id) or clickup_task_search. |