成员在企业微信门禁app点击远程开门时,会触发远程开门指令回调。
企业微信回调事件到厂商在设备型号详情中登记的回调URL
请求方式:POST(HTTPS)
请求地址:https://127.0.0.1/suite/receive?msg_signature=3a7b08bb8e6dbce3c9671d6fdb69d15066227608×tamp=1403610513&nonce=380320359
请求包体:
{
"msg_type":"command",
"base_info":{
"req_id":"xxx",
"device_sn":"xxx",
"createtime":1658332800,
"model_id":"xxx",
"auth_corpid":"xxx",
"service_corpid":"xxx"
},
"command":{
"command_type":"remote_open_door",
"open_userid":"xxxx",
"oper_id":"xxxx"
}
}
参数说明:
参数名 | 类型 | 描述 |
---|---|---|
msg_type | string | 用于表示本消息是 事件event 还是指令 command,此处固定为command , 对应command节点数据有效 |
command | 结构体 | 指令数据 |
command_type | string | 指令类型,远程开门,此处固定为remote_open_door |
oper_id | string | 本次操作的id |
open_userid | string | 成员id(字符串) |
base_info | 结构体 | 固定字段基础数据 |
req_id | string | 请求req_id,可以用于排重 |
device_sn | string | 设备序列号,在第三方管理端登记的SN |
createtime | uint32 | 事件触发时间戳(unix 时间戳 单位:秒) |
model_id | string | 设备型号modelid |
auth_corpid | string | 绑定设备企业的corpid |
service_corpid | string | 硬件提供商企业corpid |
服务商的响应必须在1000ms内完成