GET apioauth/matrixv2/services/{serviceId}/videodownloads?startDate={startDate}&endDate={endDate}
Get the video downloads for a service
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| serviceId | 
                         The service 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
Collection of VideoDownloadResponse| Name | Description | Type | Additional information | 
|---|---|---|---|
| VideoCameraChannel | integer | 
                             None.  | 
                |
| VideoURL | string | 
                             None.  | 
                |
| VideoStartTime | date | 
                             None.  | 
                |
| VideoEndTime | date | 
                             None.  | 
                |
| VideoComment | string | 
                             None.  | 
                |
| VideoDownloadStatus | VideoDownloadStatus | 
                             None.  | 
                
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "VideoCameraChannel": 1,
    "VideoURL": "sample string 2",
    "VideoStartTime": "2025-11-04T14:27:43.3749157+00:00",
    "VideoEndTime": "2025-11-04T14:27:43.3749157+00:00",
    "VideoComment": "sample string 5",
    "VideoDownloadStatus": 0
  },
  {
    "VideoCameraChannel": 1,
    "VideoURL": "sample string 2",
    "VideoStartTime": "2025-11-04T14:27:43.3749157+00:00",
    "VideoEndTime": "2025-11-04T14:27:43.3749157+00:00",
    "VideoComment": "sample string 5",
    "VideoDownloadStatus": 0
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfVideoDownloadResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <VideoDownloadResponse>
    <VideoCameraChannel>1</VideoCameraChannel>
    <VideoURL>sample string 2</VideoURL>
    <VideoStartTime>2025-11-04T14:27:43.3749157+00:00</VideoStartTime>
    <VideoEndTime>2025-11-04T14:27:43.3749157+00:00</VideoEndTime>
    <VideoComment>sample string 5</VideoComment>
    <VideoDownloadStatus>Requested</VideoDownloadStatus>
  </VideoDownloadResponse>
  <VideoDownloadResponse>
    <VideoCameraChannel>1</VideoCameraChannel>
    <VideoURL>sample string 2</VideoURL>
    <VideoStartTime>2025-11-04T14:27:43.3749157+00:00</VideoStartTime>
    <VideoEndTime>2025-11-04T14:27:43.3749157+00:00</VideoEndTime>
    <VideoComment>sample string 5</VideoComment>
    <VideoDownloadStatus>Requested</VideoDownloadStatus>
  </VideoDownloadResponse>
</ArrayOfVideoDownloadResponse>