update_action_item
Update an action item's title, notes, assignee, or due date by sending only the fields that need changing. Unchanged fields remain as-is, enabling precise edits without overwriting other data.
Instructions
Change an action item's title, notes, assignee, or due date.
USE WHEN: Editing item content. Send only the fields you want changed — omitted fields are left as they are.
USE INSTEAD: set_action_item_status to move an item between todo / done / suggested; status is not editable here.
FIRST: id comes from list_my_action_items (field results[].id) — call it first if you don't have one.
EXAMPLE: {"id":"ai-abc","due_date":"2026-10-01"}
RETURNS: The updated action item, same shape as get_action_item.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| title | No | New title. Omit to leave unchanged. | |
| due_date | No | Due date as an ISO 8601 timestamp. | |
| notes_text | No | New notes. Omit to leave unchanged. | |
| assigned_to | No | Assignee user ID, from `search_users`. Not a name. |