获取频道问卷列表数据
GET /v1/activities/{actID}/getQuestionList
Authorization:Bearer {TOKEN}
Content-Type:application/json
注:
payload参数说明
参数 |
参数说明 |
参数类型 |
是否必填 |
备注 |
page_size |
每页结果数 |
integer |
否 |
默认20,最大100 |
page_index |
页码 |
integer |
否 |
默认1 |
返回
{
"errcode": 1000,
"msg": "OK",
"page_index": 1,
"question_list": [
{
"question_id": "vlj08p5o",
"name": "123123",
"position": 1,
"status": 0,
"created_at": "2020-04-13T13:52:27+08:00"
}
],
"size": 10,
"total": 1
}
返回参数说明
参数 |
参数说明 |
参数类型 |
errcode |
状态码 |
integer |
msg |
返回消息 |
string |
page_index |
页码 |
integer |
question_list |
问卷列表 |
array |
question_id |
问卷hash id |
string |
name |
问卷名称 |
string |
position |
问卷位置:0观看页内 1观看页前 |
integer |
status |
问卷状态:0关 1开 |
integer |
created_at |
创建时间 |
datetime |
size |
每页条数 |
integer |
total |
总条数 |
integer |