获取白名单列表
#
接口概述- 功能:设置允许回答问卷的人员名单(将第三方用户的ID从白名单删除)
- 请求方式:GET
- 请求地址:/api/surveys/{survey_id}/respondent/access_list?appid={appid}&access_token={access_token}&last_id={0}
#
请求参数参数名 | 类型 | 参数位置 | 描述 | 示例值 |
---|---|---|---|---|
survey_id | integer | uri | 问卷ID | 9560808 |
last_id | integer | queryString | 填上一次返回的最后一个id作为游标,默认可填0,每次最多返回100条数据 | 11091 |
#
请求示例GET https://open.wj.qq.com/api/surveys/9560808/respondent/access_list?last_id=0
#
响应示例{ "code": "OK", "error": { "type": "" }, "data": { "list": [ { "id": 11176, "respondent_id": 60000207891 }, { "id": 11091, "respondent_id": 60000207892 } ] }, "request_id": "730380dc-4c73-48af-92bb-b6ecc5df9137"}