cozi_mark_item_complete
Check off completed items in Cozi lists to track progress and maintain organized family tasks and shopping lists.
Instructions
Mark an item as complete/done in a Cozi list. This checks off the item.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemId | Yes | The ID of the item to mark complete | |
listId | Yes | The ID of the list containing the item |
Input Schema (JSON Schema)
{
"properties": {
"itemId": {
"description": "The ID of the item to mark complete",
"type": "string"
},
"listId": {
"description": "The ID of the list containing the item",
"type": "string"
}
},
"required": [
"listId",
"itemId"
],
"type": "object"
}