Get Board Issues
jira_get_board_issuesRetrieve Jira issues from a specific board using JQL filters. Customize fields, limit results, and paginate to get exactly the issues you need.
Instructions
Get all issues linked to a specific board filtered by JQL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jql | Yes | JQL query string (Jira Query Language). Examples: - Find Epics: "issuetype = Epic AND project = PROJ" - Find issues in Epic: "parent = PROJ-123" - Find by status: "status = 'In Progress' AND project = PROJ" - Find by assignee: "assignee = currentUser()" - Find recently updated: "updated >= -7d AND project = PROJ" - Find by label: "labels = frontend AND project = PROJ" - Find by priority: "priority = High AND project = PROJ" | |
| limit | No | Maximum number of results (1-50) | |
| expand | No | Optional fields to expand in the response (e.g., 'changelog'). | version |
| fields | No | Comma-separated fields to return in the results. Use '*all' for all fields, or specify individual fields like 'summary,status,assignee,priority' | assignee,updated,versions,summary,created,status,description,priority,issuetype,reporter,labels |
| board_id | Yes | The id of the board (e.g., '1001') | |
| start_at | No | Starting index for pagination (0-based) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |