curl --location --request POST 'https://qyapi.weixin.qq.com/cgi-bin/openhw/device/report_checkin_data' \
--header 'Content-Type: application/json' \
--data-raw '{
"checkin_data": [
{
"open_userid": "x1",
"user_type":0,
"timestamp": 12345
},
{
"open_userid": "x2",
"user_type":0,
"timestamp": 12345
}
]
}'
{
"errcode": 0,
"errmsg": "ok",
"fail_list": [
{
"open_userid": "x2",
"user_type": 0,
"timestamp": 12345
}
]
}