-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflow_template.json
167 lines (167 loc) · 3.76 KB
/
flow_template.json
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"description": "A New Flow",
"states": [
{
"name": "Trigger",
"type": "trigger",
"transitions": [
{
"next": "mimosa-bot",
"event": "incomingMessage"
},
{
"event": "incomingCall"
},
{
"next": "send_and_reply_1",
"event": "incomingRequest"
}
],
"properties": {
"offset": {
"x": 0,
"y": 0
}
}
},
{
"name": "mimosa-bot",
"type": "send-to-auto-pilot",
"transitions": [
{
"event": "sessionEnded"
},
{
"event": "failure"
},
{
"event": "timeout"
}
],
"properties": {
"chat_channel": "{{trigger.message.ChannelSid}}",
"offset": {
"x": -270,
"y": 200
},
"autopilot_assistant_sid": "<AUTOPILOT_SID>",
"from": "{{flow.channel.address}}",
"chat_service": "{{trigger.message.InstanceSid}}",
"body": "{{trigger.message.Body}}",
"timeout": 14400
}
},
{
"name": "send_and_reply_1",
"type": "send-and-wait-for-reply",
"transitions": [
{
"next": "split_1",
"event": "incomingMessage"
},
{
"next": "add_unverified_label",
"event": "timeout"
},
{
"event": "deliveryFailure"
}
],
"properties": {
"offset": {
"x": 260,
"y": 160
},
"service": "{{trigger.message.InstanceSid}}",
"channel": "{{trigger.message.ChannelSid}}",
"from": "{{flow.channel.address}}",
"body": "Hi {{flow.data.customer_name}}! Thanks for joining the wait list. Reply Yes to confirm your phone number.",
"timeout": "10"
}
},
{
"name": "split_1",
"type": "split-based-on",
"transitions": [
{
"event": "noMatch"
},
{
"next": "send_message_2",
"event": "match",
"conditions": [
{
"friendly_name": "If value equal_to Yes",
"arguments": [
"{{widgets.send_and_reply_1.inbound.Body}}"
],
"type": "matches_any_of",
"value": "Yes, Y, YES, yes, y"
}
]
}
],
"properties": {
"input": "{{widgets.send_and_reply_1.inbound.Body}}",
"offset": {
"x": -40,
"y": 490
}
}
},
{
"name": "send_message_2",
"type": "send-message",
"transitions": [
{
"event": "sent"
},
{
"event": "failed"
}
],
"properties": {
"offset": {
"x": 120,
"y": 760
},
"service": "{{trigger.message.InstanceSid}}",
"channel": "{{trigger.message.ChannelSid}}",
"from": "{{flow.channel.address}}",
"to": "{{contact.channel.address}}",
"body": "Thank you! We'll let you know when your table is ready."
}
},
{
"name": "add_unverified_label",
"type": "make-http-request",
"transitions": [
{
"event": "success"
},
{
"event": "failed"
}
],
"properties": {
"offset": {
"x": 490,
"y": 420
},
"method": "POST",
"content_type": "application/x-www-form-urlencoded;charset=utf-8",
"parameters": [
{
"value": "{{flow.data.card_id}}",
"key": "card_id"
}
],
"url": "<NGROK_URL>/phone-unverified"
}
}
],
"initial_state": "Trigger",
"flags": {
"allow_concurrent_calls": true
}
}