Skip to main content
Version: latest

添加第三方账号到白名单

重要提示

该功能为 尊享版 付费功能,如未升级,请先 升级 后再使用

接口概述#

  • 功能:设置允许回答问卷的人员名单(将第三方用户的ID添加到白名单中)
  • 请求方式:POST
  • 请求地址:/api/surveys/{survey_id}/respondent/access_list/batch?appid={appid}&access_token={access_token}

请求参数#

参数名类型参数位置描述示例值
survey_idintegeruri问卷ID9560808
typeintegerbody白名单类型第三方登录用户固定为 11
respondent_idsarray[integer]body回答者ID列表,单次添加不超过100个用户,注意取用户信息中的 respondent_id 字段[60000207891,60000207892,60000207893]

请求示例#

POST https://open.wj.qq.com/api/surveys/9560808/respondent/access_list/batch

{    "type":11,    "respondent_ids":[60000207891,60000207892,60000207893]}

响应示例#

{    "code": "OK",    "error": {        "type": ""    },    "data": {},    "request_id": "a51f36ef-1fd5-4537-9e9b-6e5054b99e15"}

错误码#

error.type 错误代码错误描述
permission_denied无权限
invalid_list_length列表长度不合法
invalid_type问卷已开启其他类型白名单,需先从界面关闭
invalid_argument参数校验不通过
user_not_found查找用户失败