获取问卷ID对应问卷答案
开发中
GET
https://saas-open.vhall.com/v3/vss/open/survey/reports
"code": 200,
"msg": "success",
"data": {
"question": [
"姓名",
"邮箱",
"问答题",
"1+1=?",
"1+2=?"
],
"type": [
0,
0,
0,
1,
1
],
"answer": [
[
"v461",
"gaoyansing@sina.com",
"等于2",
"等于3"
]
]
}
}
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://saas-open.vhall.com/v3/vss/open/survey/reports?app_key=75844ad7a2a5f2b421c04a125b197996&sign_type=0&signed_at={% mock 'timestamp' , 's' %}&sign={{sign}}&survey_id=1124038&webinar_id=509154312' \
--header 'platform: 15'
响应示例响应示例
{
"code": 0,
"msg": "string",
"data": {
"question": [
"string"
],
"type": [
0
],
"answer": [
[
"string"
]
]
}
}
请求参数
Query 参数
app_key
string
APPKEY
示例值:
{{app_key}}
sign_type
string
必需
示例值:
{{sign_type}}
signed_at
string
签名时间
示例值:
{{signed_at}}
sign
string
签名值
示例值:
{{sign}}
survey_id
string
问卷id
示例值:
1124038
webinar_id
string
必需
示例值:
509154312
Header 参数
platform
integer
可选
默认值:
15
返回响应
修改于 2025-06-19 01:18:08