clear-completed-tasks
Remove all completed tasks from a specified task list in Google Tasks to maintain an organized and clutter-free workspace.
Instructions
Clear all completed tasks from a task list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tasklist | Yes | Task list ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"tasklist": {
"description": "Task list ID",
"type": "string"
}
},
"required": [
"tasklist"
],
"type": "object"
}