filePage
POST
/v2/openapi/gallery/page/fileRequest
Body Params application/json
pageSize
integer | null
optional
Default:
10
pageIndex
integer | null
optional
Default:
1
deviceIds
string | null
optional
deviceIds split by ,
startTime
string | null
required
startTime yyyy-MM-dd HH:mm:ss Time Zone
endTime
string | null
required
endTime yyyy-MM-dd HH:mm:ss Time Zone
Example
{
"pageSize": "10",
"pageIndex": "1",
"deviceIds": "string",
"startTime": "string",
"endTime": "string"
}
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
code
integer | null
optional
data
object (PageResult«ApiCaptureFileVO»)
optional
records
array[object (ApiCaptureFileVO) {10}] | null
optional
total
integer | null
optional
size
integer | null
optional
current
integer | null
optional
msg
string | null
optional
Example
{
"code": 0,
"data": {
"records": [
{
"id": "",
"deviceName": "",
"deviceId": "",
"channelId": 0,
"fileUrl": "",
"fileType": "",
"fileSize": 0,
"createTime": "",
"channelName": "",
"platform": ""
}
],
"total": 0,
"size": 0,
"current": 0
},
"msg": ""
}
Last modified: 2 months ago