---
title: "admGetAllNotificationSchemes"
canonical: "https://support.appfire.com/space/PSJ/15490154/admGetAllNotificationSchemes"
format: markdown
---
> Macro (aura-html)

> Macro (button-handy)



> Macro (table-plus)
> 
> |  |  |  |  |
> | --- | --- | --- | --- |
> | **Syntax** | admGetAllNotificationSchemes() | **Package** | adm |
> | **Alias** |  | **Pkg Usage** | allNotifSChemes() |

## Description

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

Returns the list of Notification Scheme names that exist in the Jira environment.

## Return Type

**String []**

The requested names of all notification schemes.

## Example

```
string [] nSchemes = admGetAllNotificationSchemes();
for(string nName in nSchemes) {
	runnerLog(nName);
	// Default Notification Scheme
	// TEST Notification Scheme
}
```

## See also

> Macro (contentbylabel)