delete-checklist-item
Remove a specific subtask from a task in Microsoft Todo by providing the task list ID, task ID, and checklist item ID to delete.
Instructions
Delete a checklist item (subtask) from a task. This removes just the specific subtask, not the parent task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
checklistItemId | Yes | ID of the checklist item to delete | |
listId | Yes | ID of the task list | |
taskId | Yes | ID of the task |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"checklistItemId": {
"description": "ID of the checklist item to delete",
"type": "string"
},
"listId": {
"description": "ID of the task list",
"type": "string"
},
"taskId": {
"description": "ID of the task",
"type": "string"
}
},
"required": [
"listId",
"taskId",
"checklistItemId"
],
"type": "object"
}