Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info
titleAvailability

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

organizationsString[]YesThe organizations names.

Return type

String[]

Returns all the users from an organization.

Example

Example 1

Code Block
return getUsersFromOrganizations({"First Organization", "Second Organization"});

Example 2

Code Block
return getUsersFromOrganizations("My Organization");

...