google_tasks_update_task

Modify task details in Google Tasks, including title, notes, due date, status, or task list, by providing the task ID. Ensures accurate updates for task management.

Instructions

Update an existing task

Input Schema

NameRequiredDescriptionDefault
dueNoNew due date in RFC 3339 format
notesNoNew notes or description for the task
statusNoNew status for the task (needsAction or completed)
taskIdYesID of the task to update
taskListIdNoID of the task list the task belongs to (uses default if not specified)
titleNoNew title for the task

Input Schema (JSON Schema)

{ "properties": { "due": { "description": "New due date in RFC 3339 format", "type": "string" }, "notes": { "description": "New notes or description for the task", "type": "string" }, "status": { "description": "New status for the task (needsAction or completed)", "type": "string" }, "taskId": { "description": "ID of the task to update", "type": "string" }, "taskListId": { "description": "ID of the task list the task belongs to (uses default if not specified)", "type": "string" }, "title": { "description": "New title for the task", "type": "string" } }, "required": [ "taskId" ], "type": "object" }
ID: opwf6bop3j