GET api/GetCallCountReport?jsonData={jsonData}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
jsonData

string

Required

Body Parameters

None.

Response Information

Resource Description

GetCallCountReportDataVm
NameDescriptionTypeAdditional information
CallCount

GetCallCountDashboardDataVm

None.

Response Formats

application/json, text/json

Sample:
{
  "CallCount": {
    "TotalCallCount": 1,
    "TotalCallDuration": 2.0,
    "IncomingCallCount": 3,
    "IncomingCallDuration": 4.0,
    "OutgoingCallCount": 5,
    "OutgoingCallDuration": 6.0,
    "MissedCallCount": 7
  }
}

application/xml, text/xml

Sample:
<GetCallCountReportDataVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.Lead">
  <CallCount>
    <IncomingCallCount>3</IncomingCallCount>
    <IncomingCallDuration>4</IncomingCallDuration>
    <MissedCallCount>7</MissedCallCount>
    <OutgoingCallCount>5</OutgoingCallCount>
    <OutgoingCallDuration>6</OutgoingCallDuration>
    <TotalCallCount>1</TotalCallCount>
    <TotalCallDuration>2</TotalCallDuration>
  </CallCount>
</GetCallCountReportDataVm>