人脸下发
- 房间封房状态不允许人脸下发
本地服务器版本:
- V2.5.0
命令值(cmd):
- 330
注意:
1.门锁绑定网关,门锁和网关都需要支持指纹下发
2.人脸下发结果通过319命令推送给第三方
入参说明:
参数名 | 层级 | 类型 | 条件 | 说明 | 备注 |
---|---|---|---|---|---|
lockCode | 1 | String | 必填 | 门锁号 | 每个房间的门锁号都是唯一 通过房间列表获取 |
customerName | 1 | String | 必填 | 房客名称 | |
beginTime | 1 | long | 必填 | 开始时间 | 时间戳:秒 |
endTime | 1 | long | 必填 | 结束时间 | 时间戳:秒 |
idType | 1 | int | 可选 | 证件类型 | 1身份证 2护照 3回乡证 4军官证 5士兵证 6学生证 7导游证 8驾驶证 |
picture | 1 | String | 必填 | Base64编码图片 | 必须经过“图片处理接口”获取 |
云端发布Pub(示例):
{
"cmd": 330,
"msgId": 122321323,
"data": {
"lockCode":"1.2.204",
"customerName":"zzy",
"beginTime":1649984400,
"endTime":1649990000,
"picture":“xxxxxxxxxxxxxxxxxx=”
}
}
响应参数说明:
参数名 | 层级 | 类型 | 条件 | 描述 | 备注 |
---|---|---|---|---|---|
checkInId | 1 | String | 必填 | 授权ID | -- |
state | 1 | int | 必填 | 状态 | 1 已入住 3 待下发入住 |
customerName | 1 | String | 必填 | 房客名称 | |
picture | 1 | String | 必填 | base64数据 | -- |
边缘网关响应Sub(示例):
{
"cmd":329,
"msgId":122321323,
"rslt":0,
"rsn":"Success",
"data":{
"checkInId":"NmXMbUhcMk0=",
"state":3,
"customerName":"zzy"
"picture":"xxxxxxx="
}
}