create_todo
Create new todo items with titles and optional descriptions to organize tasks and track progress through a complete todo management system.
Instructions
Create a new todo item
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| authToken | Yes | Authentication token from Kinde | |
| description | No | Optional description of the todo item | |
| title | Yes | Title of the todo item |
Input Schema (JSON Schema)
{
"properties": {
"authToken": {
"description": "Authentication token from Kinde",
"type": "string"
},
"description": {
"description": "Optional description of the todo item",
"type": "string"
},
"title": {
"description": "Title of the todo item",
"type": "string"
}
},
"required": [
"authToken",
"title"
],
"type": "object"
}