Outbound Automated Campaigns¶
Endpoint: GET /reporting/automated-campaign/outbound-time-allocation
Request¶
Headers¶
| Header | Value |
|---|---|
| Access-Token | {access_token} |
| Content-Type | application/json |
Body¶
{
"dateFrom": "2021-03-01",
"dateTo": "2021-03-03",
"automatedCampaignId": 1
}
Response (200 OK)¶
{
"campaignId": 1,
"campaignName": "AUTOMATED CAMPAIGN",
"contacts": {
"1": {
"id": 1,
"firstName": "Contact first name",
"lastName": "Contact last name",
"phone": "+10000000000",
"email": "[email protected]",
"totalTalkTime": 0,
"totalWrapUpTime": 0,
"totalCallTime": 0,
"additionalFields": {
"custom_field": "123123"
}
}
}
}