ENUM

EventDeliveryType

link GraphQL Schema definition

1enum EventDeliveryType {
2
3# Webhook protocol should provide the following kvp in the json structure of
4# "url":"://"
5# "encoding":"[protobuf|protobuf_base64|json]
6# "template": string
7Webhook
8
9# SMS protocol should provide the following kvp in the json structure of
10# "number": ##########
11SMS
12
13# Email protocol should provide the following kvp in the json structure of
14# "address":"@"
15Email
16
17# Create Job
18# "targetId": ""
19# "engineId":""
20CreateJob
21}

link Required by