Skip to main content

Schedule Notification Subscription

Specification

{
"name": "<string>",
"trigger": "<string>",
"channel": <notification channel spec>
}

Structure values

Field NameTypeDescriptionRequiredDefault
nameStringThe name of the notification subscriptionAuto-generated based on channel type
triggerStringJob event that triggers a notification during a scheduled job run. Supported values: JobFinished, JobStarted, JobFailed.Required
channelNotification ChannelProvides information about where to send notification.Required

Example

{
"trigger": "JobFailed",
"channel": {
"channelType": "Email",
"to": "my_email_address@test.com"
}
}