/
getAllScrumBoards
getAllScrumBoards
Description
Retrieves a list of all Scrum boards within a project or system. Scrum boards are used for managing work items in the context of Scrum methodology, which includes defined sprint cycles.
Return Type
Returns all the boards it can find.
Example
JBoard [] boards = getAllScrumBoards();
for(JBoard b in boards) {
runnerLog("Id: " + b.id);
runnerLog("Name: " + b.name);
}
See also
Peacock
Related content
getAllKanbanBoards
getAllKanbanBoards
More like this
getAllBoards
getAllBoards
More like this
getBoardsFromSprint
getBoardsFromSprint
More like this
getAllOpenSprints
getAllOpenSprints
More like this
getAllBoardNames
getAllBoardNames
More like this
getAllBoards
getAllBoards
More like this