Get Board Actions
get_board_actionsInspect a Trello board's raw action history for debugging and auditing. Returns a compact, normalized view filtered by time, type, and count.
Instructions
Low-level historical inspection/debug tool: returns a compact, normalized view of a board's raw action history. For structural list-change auditing, prefer get_list_changes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board | Yes | Trello board ID, shortLink, or full board URL (e.g. https://trello.com/b/abc123/my-board) | |
| since | No | ISO 8601 timestamp — only include actions at or after this time (e.g. 2026-01-01T00:00:00.000Z) | |
| before | No | ISO 8601 timestamp — only include actions strictly before this time | |
| maxActions | No | Cap on the total number of actions scanned across pagination (default: 1000) | |
| actionTypes | No | Trello action type names to filter to, e.g. ["createList", "updateList"]. Unfiltered if omitted. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| actions | Yes | ||
| truncated | Yes | ||
| actionsScanned | Yes | ||
| requestedRange | Yes |