List boards
jira_list_boardsList visible Jira Software boards with id, name, type, and project. Use this first to get board IDs for sprint workflows, filter by project key or type, and paginate with startAt.
Instructions
Lists the Jira Software boards you can see — id, name, type and the project each belongs to. The board id is what jira_list_sprints takes, so this is the first call of any sprint workflow. Filter with projectKeyOrId or type. A site without Jira Software fails here with kind=unsupported rather than an empty list. One page per call: when paging.partial is true, call again with startAt = paging.nextStartAt.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Only boards of this type. Kanban boards have no sprints. | |
| profile | No | Named credential profile for this call. Omit to use the active profile. Rejected when the server locks the profile (JIRA_LOCK_PROFILE). | |
| startAt | No | Offset to resume from — pass `paging.nextStartAt` from the previous call. | |
| maxResults | No | Rows per page, 1…50 (the Agile API's own cap); default 50. One page is read per call. | |
| projectKeyOrId | No | Only boards of this project — a project key (ABC) or a numeric project id. Omit to list every board you can see. |