查询人脸列表
GET
https://api2.hik-cloud.com/api/v1/community/superBrains/actions/searchFaceDataFromLib
功能说明
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api2.hik-cloud.com/api/v1/community/superBrains/actions/searchFaceDataFromLib' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"pageNo": 1,
"pageSize": 100,
"deviceId": "xxxxxxxxxxx",
"searchId": 11,
"customFaceLibId": "Lib0712"
}'
响应示例响应示例
{
"code": 200,
"message": "操作成功",
"data": {
"pageNo": 1,
"pageSize": 100,
"totalPage": 1,
"total": 1,
"hasNextPage": false,
"hasPreviousPage": false,
"firstPage": true,
"lastPage": true,
"rows": [
{
"employeeNo": "V02",
"modelingStatus": {
"status": "success",
"reason": null
}
}
]
}
}
请求参数
Header 参数
Authorization
string
可选
默认值:
Bearer {{access_token}}
Body 参数application/json
返回响应
修改于 2022-05-30 09:03:22