Skip to end of banner
Go to start of banner

getAllBoardNames

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

Version 1 Next »

Availability

This routine is available starting with SIL Engine™ 4.8.1.

Syntax

getAllBoardNames([user])

Description

Get a list of all agile boards visible to the user.

Parameters

Parameter name

Type

Required

Description

UserArray of stringsYesOptional username parameter to specify a user who can retrieve the board information. By default the current user (user who executed the script) is used and it is possible that the user may not have permissions to view the board.

Return type

String []

Returns a string array of board names.

Example 1

for(string bname in getAllBoardNames("admin")) {
	runnerLog("Board name: " + bname);
}

See also

  • No labels