google_tasks_complete_task
Mark a specific task as completed in Google Tasks by providing its task ID and optional task list ID to manage tasks efficiently.
Instructions
Mark a task as completed
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | ID of the task to complete | |
taskListId | No | ID of the task list the task belongs to (uses default if not specified) |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "ID of the task to complete",
"type": "string"
},
"taskListId": {
"description": "ID of the task list the task belongs to (uses default if not specified)",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}