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


## Description

> Macro (excerpt)
> 
> Retrieves a breakdown of events and notifications for all notification schemes.

Retrieves a breakdown of events and notifications for all notification schemes.

|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | admGetAllNotificationSchemes(notificationSchemeName) | **Package** | adm |
| **Alias** |  | **Pkg Usage** | allNotificationSchemes(notificationSchemeName) |

## Parameters

| Parameter name | Type | Required | Description |
| --- | --- | --- | --- |
| notificationSchemeName | string | Yes | The name of the notification scheme. |

## Return Type

**[JIssueNotificationScheme []](https://appfire.atlassian.net/wiki/spaces/PSJC/pages/435028065)**

Returns all the notification schemes.

## Example

```javascript
JIssueNotificationScheme [] allNoteSchemes = admGetAllNotificationSchemes();
for(JIssueNotificationScheme jns in allNoteSchemes) {
    runnerLog("Id: " + jns.id);
    runnerLog("Name: " + jns.name);
}
```

## See also

> Macro (contentbylabel)