curl --location --request POST 'https://qyapi.weixin.qq.com/cgi-bin/openhw/device/report_temperature_data' \
--header 'Content-Type: application/json' \
--data-raw '{
"temperature_data":[
{
"open_userid": "zhangsan",
"user_type":2,
"temperature":"36.7",
"timestamp":12345,
"status":0
}
]
}'
{
"errcode": 0,
"errmsg": "ok",
"fail_list": [
{
"open_userid": "zhangsan",
"user_type": 2,
"timestamp": 12345,
"errcode": 123,
"errmsg": "xxxx"
}
]
}