cozi_mark_item_incomplete
Mark items as incomplete in Cozi lists to track pending tasks and shopping items. Unchecks completed items to maintain accurate task status across your family's shared lists.
Instructions
Mark an item as incomplete/not done in a Cozi list. This unchecks the item.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemId | Yes | The ID of the item to mark incomplete | |
listId | Yes | The ID of the list containing the item |
Input Schema (JSON Schema)
{
"properties": {
"itemId": {
"description": "The ID of the item to mark incomplete",
"type": "string"
},
"listId": {
"description": "The ID of the list containing the item",
"type": "string"
}
},
"required": [
"listId",
"itemId"
],
"type": "object"
}