Skip to end of banner
Go to start of banner

getAllScrumBoards

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

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

JBoard []

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

  • No labels