The use of this routine requires the Power Scripts for Jira add-on be installed and licensed.
Table plus | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
|
...
Returns the Ids of all Service Desk organizations.
Return Type
Number []
Returns a number array of organization Ids.
Examples
Example 1
Code Block | ||
---|---|---|
| ||
return getAllOrganizationIds(); |
Result: 11|12|13|14.
Example 2
Code Block | ||
---|---|---|
| ||
for(number id in getAllOrganizationIds()) { runnerLog(getOrganizationNameById(id)); } |
...