agile_getBoardIssues
List issues from a Jira Agile board with optional JQL filtering and column placement from status-to-column mapping.
Instructions
List issues on an Agile board (GET /rest/agile/1.0/board/{id}/issue) with column placement from status→column map. Optional jql is ANDed with the board filter; for kanban, board subQuery is applied by default.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jql | No | Extra JQL (ANDed), e.g. assignee = currentUser() AND resolution = EMPTY | |
| fields | No | Issue fields (default: summary,status,assignee,issuetype,priority,updated,created,resolution) | |
| boardId | Yes | Board id | |
| compact | No | Compact issue objects with column (default true) | |
| startAt | No | Pagination offset when fetchAll=false | |
| fetchAll | No | Fetch pages until maxIssues (default false) | |
| maxIssues | No | Safety cap when fetchAll=true (default 500) | |
| maxResults | No | Page size when fetchAll=false (default 50) | |
| applyKanbanSubQuery | No | AND board subQuery for kanban visibility (default true) |