remove_todo
Delete a specific todo item from your persistent list by providing its unique identifier to maintain an organized task management system.
Instructions
Remove a todo by id
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"exclusiveMinimum": 0,
"type": "integer"
}
},
"required": [
"id"
],
"type": "object"
}