cozi_remove_item
Delete items from Cozi shopping and todo lists using list and item IDs. This action permanently removes selected items from your family organizer lists.
Instructions
Remove/delete an item from a Cozi list. This permanently deletes the item.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemId | Yes | The ID of the item to remove | |
listId | Yes | The ID of the list containing the item |
Input Schema (JSON Schema)
{
"properties": {
"itemId": {
"description": "The ID of the item to remove",
"type": "string"
},
"listId": {
"description": "The ID of the list containing the item",
"type": "string"
}
},
"required": [
"listId",
"itemId"
],
"type": "object"
}