delete_todo
Remove a specific todo item from your task list by providing its unique ID and authentication token.
Instructions
Delete a todo item
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| authToken | Yes | Authentication token from Kinde | |
| todoId | Yes | ID of the todo to delete |
Input Schema (JSON Schema)
{
"properties": {
"authToken": {
"description": "Authentication token from Kinde",
"type": "string"
},
"todoId": {
"description": "ID of the todo to delete",
"type": "string"
}
},
"required": [
"authToken",
"todoId"
],
"type": "object"
}