Skip to end of banner
Go to start of banner

admGetNotificationSchemeByName

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Availability

This routine is available starting with SIL Engine 4.8.0.8.

Syntax

admGetNotificationSchemeByName(notificationSchemeName)

Description

Retrieves breakdown of events and notifications for a provided notification scheme.

Parameters

Parameter name

Type

Required

Description

notificationSchemeName

string

Yes

The name of the notification scheme

Return type

JGeneric[]

Returns an array of key/value pair representations of a notification scheme, where the key is the event name that triggers the notification and the value is a pipe (|) delimited list notification events.

If the notification has a designated parameter associated to the notification, then the parameter will be added to the end of the notification type separated by a dash.

     Example: Group_Dropdown - jira-administrators

Example

string notificationSchemeName = "Default Notification Scheme";
JGeneric[] notifications = admGetNotificationSchemeByName(notificationSchemeName);
return notifications;
  • No labels