-
Notifications
You must be signed in to change notification settings - Fork 2
/
configuration.json
49 lines (49 loc) · 953 Bytes
/
configuration.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
{
"ivr": {
"text": "Welcome to my call center, please press 1 for sales, press 2 for support",
"options": [
{
"friendlyName": "Sales",
"digit": 1,
"id": "sales"
},
{
"friendlyName": "Support",
"digit": 2,
"id": "support"
}
]
},
"queues": [
{
"friendlyName": "Email Queue",
"id": "email",
"taskQueueSid": null,
"expression": "channel == \"email\""
},
{
"friendlyName": "Chat Queue",
"id": "chat",
"taskQueueSid": null,
"expression": "channel == \"chat\""
},
{
"friendlyName": "Phone Queue",
"id": "phone",
"taskQueueSid": null,
"expression": "channel == \"phone\""
},
{
"friendlyName": "Video Queue",
"id": "phone",
"taskQueueSid": null,
"expression": "channel == \"video\""
}
],
"twilio": {
"workerOfflineActivitySid": null,
"workerIdleActivitySid": null,
"workerReservationActivitySid": null,
"workerAssignmentActivitySid": null
}
}