delete-task-list
Remove a task list and its associated tasks from Microsoft Todo using the specified list ID for efficient task management and organization.
Instructions
Delete a task list (top-level container) from Microsoft Todo. This will remove the list and all tasks within it.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
listId | Yes | ID of the task list to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"listId": {
"description": "ID of the task list to delete",
"type": "string"
}
},
"required": [
"listId"
],
"type": "object"
}