-
Notifications
You must be signed in to change notification settings - Fork 152
/
configuration.json
63 lines (63 loc) · 1.4 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"ivr": {
"text": "Thanks for calling. You can press a key or say the department name. Press 1 for Sales, press 2 for Support",
"options": [
{
"friendlyName": "Sales",
"digit": 1,
"id": "sales"
},
{
"friendlyName": "Support",
"digit": 2,
"id": "support"
}
]
},
"queues": [
{
"friendlyName": "Chat Queue",
"filterFriendlyName": "Chat",
"id": "chat",
"taskQueueSid": null,
"expression": "channel == \"chat\"",
"targetWorkerExpression": ""
},
{
"friendlyName": "Phone Queue",
"filterFriendlyName": "Phone",
"id": "phone",
"taskQueueSid": null,
"expression": "channel == \"phone\"",
"targetWorkerExpression": "task.team == worker.team OR task.transferToWorkerSid = worker.sid"
},
{
"friendlyName": "Video Queue",
"filterFriendlyName": "Video",
"id": "video",
"taskQueueSid": null,
"expression": "channel == \"video\"",
"targetWorkerExpression": ""
},
{
"friendlyName": "Callback Queue",
"filterFriendlyName": "Callback",
"id": "callback",
"taskQueueSid": null,
"expression": "channel == \"callback\"",
"targetWorkerExpression": ""
}
],
"twilio": {
"workerOfflineActivitySid": null,
"workerAvailableActivitySid": null,
"workerUnavailableActivitySid": null,
"callerId": null,
"applicationSid": null,
"workflowSid": null,
"facebookPageId": null,
"voice": {
"recording": false
}
}
}