Get All Boards
boards_get_allGet agile boards from Yandex Tracker, optionally scoped by a queue key. Use cursor pagination to browse boards and specify fields to retrieve only needed data.
Instructions
Get the agile boards (in russian - 'доски') of the organization; pass queue for the boards collecting issues of that queue. Matching is done on the board's own filter, so boards filtering by something else are missed - read a few issues with issues_find and look at their boards field for those.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| queue | No | Optional queue key (Project ID) to scope the boards to, like 'SOMEPROJECT'. A board has no queue field - it is matched by the queue in its own auto-filter, so boards whose filter names no queue are left out when this is set. | |
| cursor | No | Cursor for the next page: the `next_cursor` value returned by the previous call, which is the id of the last board it returned. Leave empty for the first page. | |
| fields | No | Fields to include in the response; omit to get all. id and name are usually enough while searching - read the one board you need in full with `board_get`. | |
| per_page | No | The number of items per page for cursor-paginated endpoints. May be decreased if results exceed the context window. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| boards | Yes | ||
| next_cursor | No | Id of the last board on this page, to be passed back as `cursor` for the next one. Null when this was the last page. |