收集表的统计信息查询
POST
https://qyapi.weixin.qq.com/cgi-bin/wedoc/get_form_statistic
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://qyapi.weixin.qq.com/cgi-bin/wedoc/get_form_statistic' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"repeated_id": "REPEATED_ID1",
"req_type": 1
},
{
"repeated_id": "REPEATED_ID2",
"req_type": 2,
"start_time": 1667395287,
"end_time": 1668418369,
"limit": 20,
"cursor": 1
},
{
"repeated_id": "REPEATED_ID3",
"req_type": 3,
"limit": 20,
"cursor": 1
}
]'
响应示例响应示例
[
{
"errcode": 0,
"errmsg": "ok",
"fill_cnt": 1,
"fill_user_cnt": 1,
"unfill_user_cnt": 90
},
{
"errcode": 0,
"errmsg": "ok",
"fill_cnt": 1,
"fill_user_cnt": 1,
"unfill_user_cnt": 90,
"submit_users": [
{
"userid": "USERID1",
"submit_time": 1668418200,
"answer_id": 1,
"user_name": "USER_NAME1"
},
{
"tmp_external_userid": "TMP_EXTERNAL_USERID1",
"submit_time": 1668418200,
"answer_id": 2,
"user_name": "USER_NAME2"
}
],
"has_more": false,
"cursor": 1
},
{
"errcode": 0,
"errmsg": "ok",
"fill_cnt": 1,
"fill_user_cnt": 1,
"unfill_user_cnt": 90,
"unfill_users": [
{
"userid": "USERID1",
"user_name": "USER_NAME1"
}
],
"has_more": false,
"cursor": 1
}
]
请求参数
Query 参数
access_token
string
可选
示例值:
ACCESS_TOKEN
Body 参数application/json
返回响应
修改于 2022-12-02 10:32:05