Edit todo
todo_editUpdate existing todo items by ID, changing only specified fields for title, description, category, priority, due date, or list. Clear optional fields by passing an empty string.
Instructions
Edit an existing item's title/description/category/priority/dueDate/list by id. Only fields you pass are changed. Pass an empty string ("") for description/category/priority/dueDate to clear that field.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The todo id, e.g. 3 | |
| list | No | Move to this list | |
| title | No | New title | |
| dueDate | No | New due date YYYY-MM-DD, or "" to clear | |
| category | No | New category, or "" to clear | |
| priority | No | New priority, or "" to clear | |
| description | No | New description, or "" to clear |