List board items
plaky_list_itemsList board items with optional filtering, pagination, and subitem handling. Response includes a hasMore flag for pagination.
Instructions
List items (rows) on a board, with optional filtering. Supports pagination; the response includes a hasMore flag indicating whether more pages exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (1-indexed). Omit for the first page. | |
| expand | No | Relationships to expand into full objects instead of bare IDs, e.g. ["fields","group"]. | |
| boardId | Yes | Unique board identifier. | |
| spaceId | Yes | Unique space identifier. | |
| pageSize | No | Number of results per page. Omit for the API default. | |
| parentId | No | Return subitems of this parent item id instead of top-level items. | |
| boardViewId | No | Restrict to a specific board view's filtering/sorting. | |
| subitemsBehaviour | No | How subitems are treated: INCLUDE (default), EXCLUDE, or EMBED nested under their parent. |