获取场所码上报明细
POST
https://qyapi.weixin.qq.com/cgi-bin/report/sitecode/get_report_answer
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://qyapi.weixin.qq.com/cgi-bin/report/sitecode/get_report_answer' \
--header 'Content-Type: application/json' \
--data-raw '{
"siteid": "siteid",
"date": "2020-03-27",
"cursor": "cursor",
"limit": 100
}'
响应示例响应示例
{
"errcode": 0,
"errmsg": "ok",
"answers": [
{
"report_time": 123456789,
"report_values": [
{
"question_id": 1,
"single_choice": 2
},
{
"question_id": 2,
"text": "广东省广州市"
},
{
"question_id": 3,
"multi_choice": [
1,
3
]
}
]
},
{
"report_time": 123456789,
"report_values": [
{
"question_id": 1,
"single_choice": 1
},
{
"question_id": 2,
"text": "广东省深圳市"
},
{
"question_id": 3,
"multi_choice": [
1,
2,
3
]
}
]
}
],
"next_cursor": "NEXT_CURSOR",
"has_more": 0
}
请求参数
Query 参数
access_token
string
调用接口凭证
示例值:
ACCESS_TOKEN
Body 参数application/json
返回响应
修改于 2022-12-02 03:58:53