# Create aggregated video metrics report Create a report of aggregated camera metrics for a given time range and list of cameras. Endpoint: POST /aggregated-video-metrics-reports Version: 0.0.1 Security: o_auth ## Request fields (application/json): - `cameraIds` (array) A list of IDs of the cameras to fetch the data for. - `endDate` (string) It is the upper bound of the date range for which to return data. The endDate is non-inclusive; i.e, the returned data will be for dates from startDate to endDate-1 - `startDate` (string) It is the lower bound of the date range for which to return data. The startDate is inclusive; i.e, the returned data will be for dates from startDate to endDate-1 - `timeGrain` (string) The time granularity of the response. Enum: "1h", "24h", "168h" ## Response 200 fields (application/json): - `cameraId` (string) - `lateCount` (integer,null) - `missingCount` (integer,null) - `onTimeCount` (integer,null) - `time` (string) ## Response 400 fields (application/json): - `code` (integer) - `message` (string) ## Response 401 fields (application/json): - `code` (integer) - `message` (string) ## Response 403 fields (application/json): - `code` (integer) - `message` (string) ## Response 422 fields (application/json): - `code` (integer) - `message` (string) ## Response 500 fields