Specification
{
"name": "<string>",
"trigger": "<string>",
"channel": <notification channel spec>
}
Structure Values
Field Name |
Type |
Description |
Required |
Default |
|---|---|---|---|---|
name |
String |
The name of the notification subscription |
Auto-generated based on channel type |
|
trigger |
String |
Job event that triggers a notification during a scheduled job run. Supported values: |
Required |
|
channel |
Provides information about where to send notification. |
Required |
Example
{
"trigger": "JobFailed",
"channel": {
"channelType": "Email",
"to": "my_email_address@test.com"
}
}