人体库回流接口
更新时间:2022-11-04
接口描述
本接口用于向EVS人体库回流人体
请求结构
Plain Text
1POST /v1/database/human/backflow HTTP/1.1
2x-bce-date: 2020-03-25T09:28:13Z
3host: evs.bj.baidubce.com
4content-type: application/json
5authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2020-03-25T09:28:13Z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
6
7{
8 "databaseIds": databaseIds
9 "picsAdd": picsAdd,
10 "description": description
11}
请求头域
除公共头域外,无其它特殊头域。
请求参数
名称 | 类型 | 是否必须 | 参数位置 | 描述 |
---|---|---|---|---|
databaseIds | Array | 是 | RequestBody参数 | 回流的人脸库ID列表 |
picsAdd | Array | 是 | RequestBody参数 | 回流的人体信息 |
+ appId | String | 是 | RequestBody参数 | 应用ID |
+ deviceId | Long | 是 | RequestBody参数 | 设备ID |
+ humanId | String | 是 | RequestBody参数 | 人体ID |
+ bukcet | String | 是 | RequestBody参数 | 人体图Bucket |
+ key | String | 是 | RequestBody参数 | 人体图Key |
+ picUrl | String | 否 | RequestBody参数 | 人体图链接 |
description | String | 否 | RequestBody参数 | 人体描述 |
响应头域
除公共头域外,无其它特殊头域。
响应参数
无
请求示例
Plain Text
1POST /v1/database/human/backflow HTTP/1.1
2x-bce-date: 2020-03-25T09:28:13Z
3host: evs.bj.baidubce.com
4content-type: application/json
5authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2020-03-25T09:28:13Z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
6
7{
8 "databaseIds": ["ddb-maqtvbg8e1bipyi5"]
9 "picsAdd": [
10 {
11 "appId": "app-xxxxxxxxxxxxxxxx",
12 "deviceId": 100,
13 "humanId": "ddh-xxxxxxxxxxxxxxxx",
14 "bukcet": "test_bucket",
15 "key": "test_key",
16 "picUrl": ""
17 },
18 {
19 "appId": "app-xxxxxxxxxxxxxxxx",
20 "deviceId": 100,
21 "humanId": "ddh-xxxxxxxxxxxxxxxx",
22 "bukcet": "",
23 "key": "",
24 "picUrl": "xxxxxxxxxxx"
25 },
26 ],
27 "description": "描述"
28}
响应示例
无