usersInGroup()

This function returns the user names of active users in a given group.

Multiple groups can be specified in a comma-separated list of group names, returning the users that belong to any of the groups.


Bash
usersInGroup(group) #Output: Text list


Examples

Parser expression

Description

Bash
toString(usersInGroup("jira-developers"))

This example returns the user names of all users in the jira-developers group, e.g.:

b.smith, a.grant, admin.istrator

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

group

text

Text containing a valid Jira group.

Output

This function returns a text list


📚 Use cases and examples