cozi_edit_item
Update existing items in your Cozi family lists by modifying text content. Change item descriptions in shopping lists or todo lists to keep family organization current and accurate.
Instructions
Edit the text of an existing item in a Cozi list.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemId | Yes | The ID of the item to edit | |
listId | Yes | The ID of the list containing the item | |
text | Yes | The new text for the item |
Input Schema (JSON Schema)
{
"properties": {
"itemId": {
"description": "The ID of the item to edit",
"type": "string"
},
"listId": {
"description": "The ID of the list containing the item",
"type": "string"
},
"text": {
"description": "The new text for the item",
"type": "string"
}
},
"required": [
"listId",
"itemId",
"text"
],
"type": "object"
}