Update task
update_taskUpdate a Google Task's title, notes, or due date. Pass only the fields you want to change to avoid overwriting existing data; clear_due removes the due date.
Instructions
Change a task's title, notes or due date. Only the fields you pass are touched — this uses patch, so omitting notes leaves existing notes intact. To remove a due date pass clear_due=true; omitting due leaves it unchanged. Cannot change parent or position — use move_task for that.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| due | No | Due date as YYYY-MM-DD. A calendar date only — the API cannot store a time of day. | |
| notes | No | ||
| title | No | ||
| list_id | Yes | List id, title, or alias. | |
| task_id | Yes | Task id. | |
| clear_due | No | Remove the due date entirely. |