jira_get_board_issues
Retrieve all issues associated with a specific Jira board using a JQL query. Specify fields to include, expand responses, and set result limits for efficient issue tracking and management.
Instructions
Get all issues linked to a specific board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
board_id | Yes | The id of the board (e.g., '1001') | |
expand | No | Fields to expand in the response (e.g., 'version', 'body.storage') | 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' | *all |
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) | |
start | No | Start index of issue |