update_task
Update an existing task by providing new values for description, definition of done, deadline, or assignee. Only supplied fields change.
Instructions
Updates an existing task. You can update any of the following fields:
Args:
task_id (str): ID of the task to update.
description (str, optional): New description for the task.
dod (str, optional): New Definition of Done for the task.
deadline (str, optional): New deadline for the task.
assignee (str, optional): New assignee for the task.
Any combination of these fields can be provided. Only non-null values will be updated.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dod | No | ||
| task_id | Yes | ||
| assignee | No | ||
| deadline | No | ||
| description | No |