Skip to end of banner
Go to start of banner

issuesInBoard

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 4 Current »

Description

Retrieves all the issues or tasks that are currently part of a specific board, offering an overview of the work being managed within that board.

Parameters

Return Type

String []

Array of issue keys. All the issues in a board.

Examples

Example 1

Gets all issues on the board.

string [] issues = issuesInBoard(12345);
for(string i in issues) {
     runnerLog(i);
}

Example 2

Gets all issues on the board that are Bugs.

string [] bugs = issuesInBoard(12345, "type=Bug");
for(string b in bugs) {
     runnerLog(b);
}

See also

  • No labels