Remove Todo Item
ha_remove_todo_itemPermanently delete an item from a Home Assistant todo list by supplying the item's UID or exact name. Use this to remove tasks like 'Buy milk' or 'Call mom'.
Instructions
Remove an item from a Home Assistant todo list.
Permanently deletes an item from the specified todo list.
IDENTIFYING ITEMS:
Use the item's UID (from ha_get_todo)
Or use the exact item summary/name text
EXAMPLES:
Remove by name: ha_remove_todo_item("todo.shopping_list", "Buy milk")
Remove by UID: ha_remove_todo_item("todo.shopping_list", "abc123-uid")
USE CASES:
"Remove milk from my shopping list"
"Delete the eggs item"
"Clear 'call mom' from my todo"
WARNING: This permanently removes the item. To mark as completed instead, use ha_set_todo_item() with status="completed".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| item | Yes | Item to remove - can be the item UID or the exact item summary/name | |
| entity_id | Yes | Todo list entity ID (e.g., 'todo.shopping_list') |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||