cozi_create_list
Create a new shopping list or todo list in Cozi Family Organizer to manage family tasks and items with real-time sync across devices.
Instructions
Create a new Cozi list. Can be either a shopping list or a todo list.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes | The title/name of the new list | |
type | Yes | The type of list to create |
Input Schema (JSON Schema)
{
"properties": {
"title": {
"description": "The title/name of the new list",
"type": "string"
},
"type": {
"description": "The type of list to create",
"enum": [
"shopping",
"todo"
],
"type": "string"
}
},
"required": [
"title",
"type"
],
"type": "object"
}