tasks_update
Update task properties such as subject, assignee, due date, or completion status. Changes apply immediately.
Instructions
Update an existing task.
Updates task properties such as subject, description, assignee, due date, or completion status.
Workflow tips:
Use tasks/list or tasks/get to find the task ID first
Only include fields you want to update
Set done = 1 to mark as completed
Changes take effect immediately
Common use cases:
Mark as done: { "id": 123, "done": 1 }
Reassign task: { "id": 123, "assignee_id": 456 }
Update due date: { "id": 123, "due_date": "2024-12-31" }
Update subject: { "id": 123, "subject": "Updated Task Title" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the task to update | |
| subject | No | Task subject/title | |
| project_id | No | ID of the project this task belongs to | |
| assignee_id | No | ID of the user assigned to this task | |
| parent_task_id | No | ID of the parent task if this is a subtask | |
| done | No | Whether the task is done (0 = not done, 1 = done) | |
| due_date | No | Due date in YYYY-MM-DD format | |
| description | No | Task description |