forked from nash-md/twilio-contact-center
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration.json
More file actions
executable file
·46 lines (46 loc) · 974 Bytes
/
configuration.json
File metadata and controls
executable file
·46 lines (46 loc) · 974 Bytes
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
{
"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": "Chat Queue",
"id": "chat",
"taskQueueSid": null,
"expression": "channel == \"chat\"",
"targetWorkerExpression": ""
},
{
"friendlyName": "Phone Queue",
"id": "phone",
"taskQueueSid": null,
"expression": "channel == \"phone\"",
"targetWorkerExpression": "task.team == worker.team"
},
{
"friendlyName": "Video Queue",
"id": "phone",
"taskQueueSid": null,
"expression": "channel == \"video\"",
"targetWorkerExpression": "task.team == worker.team"
}
],
"twilio": {
"workerOfflineActivitySid": null,
"workerIdleActivitySid": null,
"workerReservationActivitySid": null,
"workerAssignmentActivitySid": null
}
}