update_task
Modify an existing task’s title, notes, status, or due date in Google Workspace Tasks. Provide user email, task list ID, task ID, and desired updates for confirmation.
Instructions
Update an existing task.
Args: user_google_email (str): The user's Google email address. Required. task_list_id (str): The ID of the task list containing the task. task_id (str): The ID of the task to update. title (Optional[str]): New title for the task. notes (Optional[str]): New notes/description for the task. status (Optional[str]): New status ("needsAction" or "completed"). due (Optional[str]): New due date in RFC 3339 format.
Returns: str: Confirmation message with updated task details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
due | No | ||
notes | No | ||
status | No | ||
task_id | Yes | ||
task_list_id | Yes | ||
title | No | ||
user_google_email | Yes |