上报测温设备中的测温记录,每次可批量上报100条记录。
请求方式:POST(HTTPS)
请求地址: https://qyapi.weixin.qq.com/cgi-bin/openhw/device/report_temperature_data?device_access_token=DEVICE_ACCESS_TOKEN
请求包体:
{
"temperature_data":[
{
"open_userid": "zhangsan",
"user_type":2,
"temperature":"36.7",
"timestamp":12345,
"status":0
}
]
}
参数说明:
参数名 | 是否必须 | 类型 | 描述 |
---|---|---|---|
device_access_token | 是 | string | device_access_token ,获取方式见获取设备调用凭证 |
temperature_data | 是 | array(data) | 温度数据,最多批量上报100条 |
temperature_data.open_userid | 是 | string | 用户open_userid |
temperature_data.user_type | 是 | uint32 | 用户类型:0-企业成员;2-学生 |
temperature_data.temperature | 是 | string | 用户温度 |
temperature_data.timestamp | 是 | uint32 | 温度测量时间戳 |
temperature_data.status | 是 | uint32 | 状态,0:正常, 1:发热, 2:温度过低 |
返回结果:
{
"errcode": 0,
"errmsg": "ok",
"fail_list": [
{
"open_userid": "zhangsan",
"user_type":2,
"timestamp":12345,
"errcode":123,
"errmsg":"xxxx"
}
]
}
参数说明:
参数名 | 描述 |
---|---|
errcode | 错误码 |
errmsg | 错误码描述 |
fail_list | 上报失败列表 |