batch_update
Batch update multiple Things todos in a single operation: change titles, notes, deadlines, tags, or mark completed/canceled.
Instructions
Update multiple todos at once via the Things URL scheme.
Each update is a dict with 'id' (required) and any of: title, notes, when, deadline, tags, completed (bool), canceled (bool).
Args: updates: List of update dicts. Each must have 'id' key. Example: [{"id": "ABC123", "completed": true}, {"id": "DEF456", "when": "tomorrow"}]
Returns: Summary of updates applied.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| updates | Yes |