---
title: "allGroups"
canonical: "https://support.appfire.com/space/PSJC/1561199137/allGroups"
format: markdown
---
> Macro (aura-html)


 


## Description

> Macro (excerpt)
> 
> Returns the list of group names that exist in the Jira environment.

Returns the list of group names that exist in the Jira environment. 

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | allGroups() | **Package** |  |
| **Alias** |  | **Pkg Usage** |  |

## Return Type

**String []**

The requested names of all groups.

## Example

```javascript
string[] groups = allGroups();
for(string gName in groups) {
    runnerLog(gName);
}
```

## See also

> Macro (contentbylabel)