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":"://
9#
10#
11# "headers":"{\"headerTitle\": \"headerValue\", \"Authorization\": \"Bearer
12# sso-token\"}"
13#
14# Note that the headers value(optional) is a single string that will be parsed
15# into a string:string map
16Webhook
17
18# SMS target should provide the following kvp in the json structure of
19#
20# TargetType:params
21#
22#
23# "number": ########
24SMS
25
26# Email target should provide the following kvp in the json structure of
27#
28# TargetType:params
29#
30#
31# "address":"@"
32Email
33}