cozi_add_item
Add new items to your Cozi family organizer lists. Specify the list ID and item description to create shopping lists or todo items that sync across family members.
Instructions
Add a new item to a Cozi list. The item will be added to the specified list.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
listId | Yes | The ID of the list to add the item to | |
text | Yes | The text/description of the item |
Input Schema (JSON Schema)
{
"properties": {
"listId": {
"description": "The ID of the list to add the item to",
"type": "string"
},
"text": {
"description": "The text/description of the item",
"type": "string"
}
},
"required": [
"listId",
"text"
],
"type": "object"
}