Agent Outbound Calls¶
Endpoint: GET /reporting/agent/outbound-calls
Request¶
Headers¶
| Header | Value |
|---|---|
| Access-Token | {access_token} |
| Content-Type | application/json |
Body¶
{
"dateFrom": "2021-03-01",
"dateTo": "2021-03-03",
"dispositionIds": [
1,
2
],
"agentIds": [
1,
2
]
}
Response (200 OK)¶
{
"1": {
"agentId": 1,
"agentName": "Agent 1",
"totalOutgoing": 4,
"totalTransferred": 0,
"totalTransferredPercent": 0,
"avgTalkTime": 23,
"avgWrapUpTime": 17529,
"dispositions": {
"1": {
"id": 1,
"code": "Disposition 1",
"total": "2"
},
"2": {
"id": 2,
"code": "Disposition 2",
"total": "1"
}
}
},
"2": {
"agentId": 2,
"agentName": "Agent 2",
"totalOutgoing": 2,
"totalTransferred": 0,
"totalTransferredPercent": 0,
"avgTalkTime": 22,
"avgWrapUpTime": 7,
"dispositions": []
}
}