Fetches the backlog issues for this board.
GET /rest/agile/latest/board/{boardId}/backlog
Optionalparams: BoardIssuesParamsOptional: startAt, maxResults, jql, fields, expand
A search response containing the backlog issues
Fetches this board's configuration, including columns and estimation field.
GET /rest/agile/latest/board/{boardId}/configuration
Useful for deriving sprint velocity, cycle time, and workflow-column metrics.
Fetches the board details.
GET /rest/agile/latest/board/{boardId}
The board object
Fetches all issues on this board (across all sprints and the backlog).
GET /rest/agile/latest/board/{boardId}/issue
Optionalparams: BoardIssuesParamsOptional: startAt, maxResults, jql, fields, expand
A search response containing the board's issues
Returns a SprintResource for a given sprint ID.
The returned resource can be awaited directly to fetch sprint info, or chained to access sprint issues.
The numeric sprint ID
A chainable sprint resource
Fetches sprints for this board.
GET /rest/agile/latest/board/{boardId}/sprint
Optionalparams: SprintsParamsOptional: startAt, maxResults, state
A paged response of sprints
Allows the resource to be awaited directly, resolving with the board. Delegates to BoardResource.get.
Represents a Jira Software board resource with chainable async methods.
Implements
PromiseLike<JiraBoard>so it can be awaited directly to fetch the board, while also exposing sub-resource methods.Example