delete_task
Remove a specific task from a Google Tasks list by providing the user's email, task list ID, and task ID. Confirms deletion upon completion.
Instructions
Delete a task from a task list.
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 delete.
Returns: str: Confirmation message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes | ||
task_list_id | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"title": "Task Id",
"type": "string"
},
"task_list_id": {
"title": "Task List Id",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"user_google_email",
"task_list_id",
"task_id"
],
"type": "object"
}