complete_task
Update the completion status of a Google Task by providing the task ID and setting it to 'needsAction' or 'completed' for task management.
Instructions
Toggle the completion status of a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
status | No | Status of task, needsAction or completed | |
taskId | Yes | ID of the task to toggle completion status |
Input Schema (JSON Schema)
{
"properties": {
"status": {
"description": "Status of task, needsAction or completed",
"type": "string"
},
"taskId": {
"description": "ID of the task to toggle completion status",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}