GET api/reporting/callvolume?orgId={orgId}&userId={userId}&startDate={startDate}&endDate={endDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orgId | string |
None. |
|
| userId | string |
None. |
|
| startDate | string |
None. |
|
| endDate | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of CallVolumeReportEntry| Name | Description | Type | Additional information |
|---|---|---|---|
| Month | string |
None. |
|
| Count | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Month": "sample string 1",
"Count": 2
},
{
"Month": "sample string 1",
"Count": 2
}
]
application/xml, text/xml
Sample:
<ArrayOfReportingController.CallVolumeReportEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PeerToPeerSpecialistsAppAPI.Controllers">
<ReportingController.CallVolumeReportEntry>
<Count>2</Count>
<Month>sample string 1</Month>
</ReportingController.CallVolumeReportEntry>
<ReportingController.CallVolumeReportEntry>
<Count>2</Count>
<Month>sample string 1</Month>
</ReportingController.CallVolumeReportEntry>
</ArrayOfReportingController.CallVolumeReportEntry>