Schedule Notification Subscription
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: JobFinished, JobStarted, JobFailed. | Required | |
| channel | Notification Channel | Provides information about where to send notification. | Required |
Example
{
"trigger": "JobFailed",
"channel": {
"channelType": "Email",
"to": "my_email_address@test.com"
}
}