-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathconfig.json
More file actions
executable file
·128 lines (128 loc) · 3.88 KB
/
Copy pathconfig.json
File metadata and controls
executable file
·128 lines (128 loc) · 3.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"workflowApiVersion": "1.1",
"metaData": {
"icon": "images/iconSmall.png",
"category": "message"
},
"type": "REST",
"lang": {
"en-US": {
"name": "Twilio SMS",
"description": "Send Twilio SMS with Journey Builder",
"TwilioMessage":"test"
}
},
"arguments": {
"execute": {
"inArguments": [
{
"email": "{{Contact.Default.EmailAddress}}",
"to": "{{Contact.Attribute.Contacts_with_phone.+16786733382}}"
}
],
"outArguments": [],
"url": "https://pushsmsdemo.herokuapp.com/journeybuilder/execute",
"verb": "POST",
"body": "",
"format": "json",
"useJwt": false,
"timeout": 2000
}
},
"configurationArguments": {
"applicationExtensionKey": "2b37fe22-3692-4eed-8373-431defacaef1",
"save": {
"url": "https://pushsmsdemo.herokuapp.com/journeybuilder/save",
"verb": "POST",
"body": "",
"format": "json",
"useJwt": false,
"timeout": 2000
},
"publish": {
"url": "https://pushsmsdemo.herokuapp.com/journeybuilder/publish",
"verb": "POST",
"body": "",
"format": "json",
"useJwt": false,
"timeout": 2000
},
"validate": {
"url": "https://pushsmsdemo.herokuapp.com/journeybuilder/validate",
"verb": "POST",
"body": "",
"format": "json",
"useJwt": false,
"timeout": 2000
},
"stop": {
"url": "https://pushsmsdemo.herokuapp.com/stop",
"verb": "POST",
"body": "",
"format": "json",
"useJwt": false,
"timeout": 2000
}
},
"wizardSteps": [
{ "label": "Create SMS Message", "key": "step1" }
],
"userInterfaces": {
"configModal": {
"height": 600,
"width": 800,
"fullscreen": false
}
},
"schema": {
"arguments": {
"execute": {
"inArguments": [
{
"accountSid": {
"dataType": "String",
"isNullable": false,
"direction": "out"
}
},
{
"authToken": {
"dataType": "String",
"isNullable": false,
"direction": "out"
}
},
{
"from": {
"dataType": "Phone",
"isNullable": true,
"direction": "out"
}
},
{
"to": {
"dataType": "Phone",
"isNullable": false,
"direction": "out"
}
},
{
"body": {
"dataType": "String",
"isNullable": false,
"direction": "out"
}
},
{
"email": {
"dataType": "Email",
"isNullable": true,
"direction": "out"
}
}
],
"outArguments": []
}
}
}
}