get_action_item
Fetch a single action item's complete details—notes, assignee, due date, source message—by supplying its unique ID.
Instructions
Get one action item by its ID, with full detail.
USE WHEN: You have an action item ID and need its notes, assignee, due date, or source message.
USE INSTEAD: list_my_action_items or list_action_items if you do not have an ID yet — they already return the same fields per item, so a follow-up call is usually wasted.
FIRST: id comes from list_my_action_items (field results[].id) — call it first if you don't have one.
EXAMPLE: {"id":"ai-abc"}
RETURNS: {id, title, status, notes_text?, creator_id, assigned_to?, due_date?, container_id?, container_type?, source_message_id?, last_updated_by, ...}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| response_fields | No | Dot-path allowlist to shrink the response, e.g. ["results.id","total"]. Omit for the full payload. |