create-checklist-item
Add a checklist item to a task in Microsoft Todo to break it into smaller, actionable steps using list ID, task ID, and item text.
Instructions
Create a new checklist item (subtask) for a task. Checklist items help break down a task into smaller, manageable steps.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
displayName | Yes | Text content of the checklist item | |
isChecked | No | Whether the item is checked off | |
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": {
"displayName": {
"description": "Text content of the checklist item",
"type": "string"
},
"isChecked": {
"description": "Whether the item is checked off",
"type": "boolean"
},
"listId": {
"description": "ID of the task list",
"type": "string"
},
"taskId": {
"description": "ID of the task",
"type": "string"
}
},
"required": [
"listId",
"taskId",
"displayName"
],
"type": "object"
}