forked from nash-md/twilio-contact-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.json
50 lines (50 loc) · 1.06 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
{
"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",
"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": "video",
"taskQueueSid": null,
"expression": "channel == \"video\"",
"targetWorkerExpression": ""
}
],
"twilio": {
"workerOfflineActivitySid": null,
"workerIdleActivitySid": null,
"workerReservationActivitySid": null,
"workerAssignmentActivitySid": null,
"callerId": null,
"applicationSid": null,
"workflowSid": null,
"facebookPageId": null
}
}