Update task
clickup_update_taskWRITE: update fields on an existing task. Only the fields you pass are changed. ClickUp REST: PUT /task/{task_id}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New task name. | |
| parent | No | Parent task id (re-parent as a subtask). | |
| status | No | New status name (must be valid for the list). | |
| task_id | Yes | The task id to update (path param, not body). | |
| archived | No | Archive (true) or unarchive (false) the task. | |
| due_date | No | Due date as Unix time in ms. | |
| priority | No | Task priority: 1=Urgent, 2=High, 3=Normal, 4=Low. | |
| start_date | No | Start date as Unix time in ms. | |
| description | No | New task description / body text. | |
| due_date_time | No | Whether due_date carries a time component (else date-only). |