获取精准客流应用的统计结果
更新时间:2023-02-02
接口描述
本接口用于查询精准客流应用的统计信息结果。
请求结构
GET /v1/app/{appId}/customer/recording?deviceId={deviceId}&aiType={aiType}&begin={begin}&end={end} HTTP/1.1
x-bce-date: 2020-03-25T09:28:13Z
host: evs.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2020-03-25T09:28:13Z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
请求头域
除公共头域外,无其它特殊头域。
请求参数
参数名称 | 类型 | 是否必选 | 参数位置 | 描述 |
---|---|---|---|---|
appId | String | 是 | URL参数 | 应用ID |
deviceId | Long | 是 | URL参数 | 设备ID/通道ID |
begin | Integer | 是 | URL参数 | 录像开始时间,Unix时间戳(单位毫秒) |
end | Integer | 是 | URL参数 | 录像结束时间,Unix时间戳(单位毫秒) |
响应头域
除公共头域外,无其它特殊头域。
响应参数
参数名称 | 类型 | 描述 |
---|---|---|
appId | String | 应用ID |
deviceId | Long | 设备/通道ID |
deviceName | String | 设备/通道名称 |
deviceStatus | String | 设备状态 |
itemData | Array | 客流应用统计信息 |
+in | Array | 人次统计信息 |
++dayTime | String | 数据统计时间,小时维度格式为hh:00,天维度格式为yyyyMMdd |
++totalNum | Integer | 数据统计总数 |
++sequential | String | 日环比 |
+dupIn | Array | 人数统计信息 |
++dayTime | String | 数据统计时间,小时维度格式为hh:00,天维度格式为yyyyMMdd |
++totalNum | Integer | 数据统计总数 |
++sequential | String | 日环比 |
+stay | Array | 驻留人数统计信息 |
++dayTime | String | 数据统计时间,小时维度格式为hh:00,天维度格式为yyyyMMdd |
++totalNum | Integer | 数据统计总数 |
++sequential | String | 日环比 |
+pass | Array | 过店人数统计信息 |
++dayTime | String | 数据统计时间,小时维度格式为hh:00,天维度格式为yyyyMMdd |
++totalNum | Integer | 数据统计总数 |
++sequential | String | 日环比 |
请求示例
GET /v1/app/test_test/customer/recording?deviceId=0&aiType=009&begin=0&end=2678400 HTTP/1.1
x-bce-date: 2020-03-25T09:28:13Z
host: evs.bj.baidubce.com
content-type: application/json
authorization: bce-auth-v1/e8e4a9ced6794355a9a1b8a20b58d37b/2020-03-25T09:28:13Z/1800/content-type;host;x-date/4a1692dc4bab84f5801f79ea0c1fece3601cf73ecd94409d2a94b3942b971715
响应示例
HTTP/1.1 200 OK
Transfer-Encoding: chunked
x-bce-request-id: 012b9747-f13a-4a2c-a488-02b221844dca
Cache-Control: no-cache
Server: BWS
Date: Tue, 24 Mar 202 013:34:07 GMT
Content-Type: application/json;charset=UTF-8
{
"appId": "test_test",
"deviceId": 0,
"deviceName": "test_test",
"deviceStatus": "ONLINE",
"itemData": {
"in": [
{
"dayTime": "00:00",
"totalNum": 0,
"sequential": "0.0"
}
],
"dupIn": [
{
"dayTime": "00:00",
"totalNum": 0,
"sequential": "0.0"
}
],
"stay": [
{
"dayTime": "00:00",
"totalNum": 0,
"sequential": "0.0"
}
],
"pass": [
{
"dayTime": "00:00",
"totalNum": 0,
"sequential": "0.0"
}
]
}
}