google_tasks_delete_tasklist
Automate the deletion of task lists in Google Tasks using the task list ID to streamline task management and maintain organization.
Instructions
Delete a task list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskListId | Yes | ID of the task list to delete |
Input Schema (JSON Schema)
{
"properties": {
"taskListId": {
"description": "ID of the task list to delete",
"type": "string"
}
},
"required": [
"taskListId"
],
"type": "object"
}