GET apioauth/matrixv2/groups/{groupId}/videosummaries/{startDate}/{endDate}
Get a summary of video counts for each service in a group
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupId |
The group id queried |
unsigned integer |
Required |
| startDate |
The start date being queried yyyyMMddHHmmss |
string |
Required |
| endDate |
The end date being queried yyyyMMddHHmmss |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
A collection of VideoSummaryResponses
Collection of VideoSummaryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ServiceId |
The id of the service (alert log) |
integer |
None. |
| CrashVideoCount |
The count of crash videos (alert log) |
integer |
None. |
| PanicVideoCount |
The number of panic videos (alert log) |
integer |
None. |
| HarshAccelerationVideoCount |
The number of harsh acceleration videos (alert log) |
integer |
None. |
| HarshDecelerationVideoCount |
The number of harsh decleration videos (alert log) |
integer |
None. |
| HarshCorneringVideoCount |
The number of harsh cornering videos (alert log) |
integer |
None. |
| VideoDownloadCount |
The number of requested video download videos (videodownloads) |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ServiceId": 1,
"CrashVideoCount": 2,
"PanicVideoCount": 3,
"HarshAccelerationVideoCount": 4,
"HarshDecelerationVideoCount": 5,
"HarshCorneringVideoCount": 6,
"VideoDownloadCount": 7
},
{
"ServiceId": 1,
"CrashVideoCount": 2,
"PanicVideoCount": 3,
"HarshAccelerationVideoCount": 4,
"HarshDecelerationVideoCount": 5,
"HarshCorneringVideoCount": 6,
"VideoDownloadCount": 7
}
]
application/xml, text/xml
Sample:
<ArrayOfVideoSummaryResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<VideoSummaryResponse>
<ServiceId>1</ServiceId>
<CrashVideoCount>2</CrashVideoCount>
<PanicVideoCount>3</PanicVideoCount>
<HarshAccelerationVideoCount>4</HarshAccelerationVideoCount>
<HarshDecelerationVideoCount>5</HarshDecelerationVideoCount>
<HarshCorneringVideoCount>6</HarshCorneringVideoCount>
<VideoDownloadCount>7</VideoDownloadCount>
</VideoSummaryResponse>
<VideoSummaryResponse>
<ServiceId>1</ServiceId>
<CrashVideoCount>2</CrashVideoCount>
<PanicVideoCount>3</PanicVideoCount>
<HarshAccelerationVideoCount>4</HarshAccelerationVideoCount>
<HarshDecelerationVideoCount>5</HarshDecelerationVideoCount>
<HarshCorneringVideoCount>6</HarshCorneringVideoCount>
<VideoDownloadCount>7</VideoDownloadCount>
</VideoSummaryResponse>
</ArrayOfVideoSummaryResponse>