Info | ||
---|---|---|
| ||
This routine is available starting with Power Scripts™ 4.6.0 for Jira 7.4.x. |
Syntax
getUsersFromOrganizations(organizations)
Description
Excerpt |
---|
Gets users from a specified organization or list of organizations. |
Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
organizations | String[] | Yes | The organizations names. |
Return type
String[]
Returns all the users from an organization.
Example
Example 1
Code Block |
---|
return getUsersFromOrganizations({"First Organization", "Second Organization"}); |
...