📄️ List action items
List action items with filtering, sorting, and pagination.
📄️ Create an action item
Create a new action item. The item is created in `open` status.
📄️ Read an action item
Get a single action item by ID, including its category.
📄️ Update an action item
Update an action item. Only the fields included in the request body are updated.
📄️ Delete an action item
Delete an action item and all its suggestions.
📄️ Resolve an action item
Mark an action item as resolved. If an approval action gates `action_item:resolve` for this item, it moves to `pending_verification` until the approval request is decided. Otherwise it transitions straight to `resolved`.
📄️ Defer an action item
Defer an action item to a future date. If an approval action gates `action_item:defer` for this item, it moves to `pending_deferral` until the approval request is decided. Otherwise it transitions straight to `deferred`.
📄️ Reject an action item
Reject an action item as not applicable. If an approval action gates `action_item:reject` for this item, it moves to `pending_rejection` until the approval request is decided. Otherwise it transitions straight to `rejected`.
📄️ Reopen an action item
Reopen a deferred, rejected, or closed action item. The item returns to `open` status.
📄️ Close an action item
Close an action item without resolution. Only the original creator of the action item can close it.
📄️ Assign an action item
Assign an action item to a user of the organization, making that person its owner. An item has a single owner, so assigning an item that already has one reassigns it.
📄️ Unassign an action item
Remove the owner from an action item, returning it to the unassigned pool. The `assignee_id`, `assigned_at`, and `assigned_by` fields are cleared.