get-checklist-items
Retrieve subtasks or checklist items for a specific task in Microsoft Todo by providing the task ID and list ID. Manage and view detailed steps within parent tasks efficiently.
Instructions
Get checklist items (subtasks) for a specific task. Checklist items are smaller steps or components that belong to a parent task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
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": {
"listId": {
"description": "ID of the task list",
"type": "string"
},
"taskId": {
"description": "ID of the task",
"type": "string"
}
},
"required": [
"listId",
"taskId"
],
"type": "object"
}