ENUM

CreateTriggerTarget

link GraphQL Schema definition

1enum CreateTriggerTarget {
2
3# Webhook target should provide the following kvp in the json structure of
4#
5# TargetType:params
6#
7#
8# "url":"://
9Webhook
10
11# SMS target should provide the following kvp in the json structure of
12#
13# TargetType:params
14#
15#
16# "number": ########
17SMS
18
19# Email target should provide the following kvp in the json structure of
20#
21# TargetType:params
22#
23#
24# "address":"@"
25Email
26}