playBackList
POST
/v2/openapi/video/history/listfileUrl is empty, indicating that no historical videos have been uploaded. You can upload device history videos through "/v2/openapp/video/history/upload". You can view all upload records through "/v2/openapi/video/history/upload/task".
Request
Body Params application/json
deviceId
string | null
required
deviceId
channelId
integer | null
required
channelId
startTime
string | null
required
startTime Device Time Zone yyyy-MM-dd HH:mm:ss
endTime
string | null
required
endTime Device Time Zone yyyy-MM-dd HH:mm:ss
Example
{
"deviceId": "string",
"channelId": 0,
"startTime": "string",
"endTime": "string"
}
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
code
integer | null
optional
data
array[object (ApiVideoHistoryVO) {6}] | null
optional
deviceName
string | null
optional
deviceName
channelId
integer | null
optional
channelId
fileSize
number | null
optional
fileSize unit(MB)
startTime
string | null
optional
startTime yyyy-MM-dd HH:mm:ss UTC-0
endTime
string | null
optional
endTime yyyy-MM-dd HH:mm:ss UTC-0
fileUrl
string | null
optional
file download path
msg
string | null
optional
Example
{
"code": 0,
"data": [
{
"deviceName": "",
"channelId": 0,
"fileSize": 0,
"startTime": "",
"endTime": "",
"fileUrl": ""
}
],
"msg": ""
}
Last modified: a month ago