Skip to end of banner
Go to start of banner

getAllKanbanBoards

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 Kanban boards available in a project or system. Kanban boards are used for visualizing and managing work items in a Kanban methodology, typically without defined sprint cycles.

Return Type

JBoard []

Returns all the boards it can find.

Example

JBoard [] boards = getAllKanbanBoards();
for(JBoard b in boards) {
    runnerLog("Id: " + b.id); 
   runnerLog("Name: " + b.name);
}

See also

  • No labels