update_todo
Modify existing todo items by updating their title, description, or completion status to keep task lists current and organized.
Instructions
Update an existing todo item
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| authToken | Yes | Authentication token from Kinde | |
| completed | No | Completion status of the todo | |
| description | No | New description for the todo | |
| title | No | New title for the todo | |
| todoId | Yes | ID of the todo to update |
Input Schema (JSON Schema)
{
"properties": {
"authToken": {
"description": "Authentication token from Kinde",
"type": "string"
},
"completed": {
"description": "Completion status of the todo",
"type": "boolean"
},
"description": {
"description": "New description for the todo",
"type": "string"
},
"title": {
"description": "New title for the todo",
"type": "string"
},
"todoId": {
"description": "ID of the todo to update",
"type": "string"
}
},
"required": [
"authToken",
"todoId"
],
"type": "object"
}