clickup_update_task
Modify ClickUp task details including name, description, priority, due date, tags, time estimates, assignees, and parent relationships using the task ID.
Instructions
Update a task by its ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignees | No | User IDs to add or remove from the task | |
| due_date | No | Due date as Unix timestamp in milliseconds | |
| markdown_description | No | Task description in markdown format | |
| name | No | Task name | |
| parent | No | Parent task ID to move this task as a subtask | |
| priority | No | Task priority (1-4): 1=Urgent, 2=High, 3=Normal, 4=Low | |
| tags | No | Array of tag names to add to the task | |
| task_id | Yes | ClickUp task ID | |
| time_estimate | No | Time estimate in milliseconds |
Input Schema (JSON Schema)
{
"properties": {
"assignees": {
"additionalProperties": false,
"description": "User IDs to add or remove from the task",
"properties": {
"add": {
"description": "Array of user IDs to add to the task",
"items": {
"type": "number"
},
"type": "array"
},
"rem": {
"description": "Array of user IDs to remove from the task",
"items": {
"type": "number"
},
"type": "array"
}
},
"type": "object"
},
"due_date": {
"description": "Due date as Unix timestamp in milliseconds",
"type": "number"
},
"markdown_description": {
"description": "Task description in markdown format",
"type": "string"
},
"name": {
"description": "Task name",
"type": "string"
},
"parent": {
"description": "Parent task ID to move this task as a subtask",
"type": "string"
},
"priority": {
"description": "Task priority (1-4): 1=Urgent, 2=High, 3=Normal, 4=Low",
"type": "number"
},
"tags": {
"description": "Array of tag names to add to the task",
"items": {
"type": "string"
},
"type": "array"
},
"task_id": {
"description": "ClickUp task ID",
"type": "string"
},
"time_estimate": {
"description": "Time estimate in milliseconds",
"type": "number"
}
},
"required": [
"task_id"
],
"type": "object"
}