修改投票
请求地址
PUT /api/live/v1/room/{id}/ballots/{ballotId}
字段 |
是否可选 |
类型 |
描述 |
Authorization |
否 |
string |
认证信息,格式:bearer ${token} |
Accept-Language |
是 |
string |
选择语言,(zh-CN)(zh-TW)(en-US) 默认值: zh-CN |
Content-Type |
是 |
string |
application/json |
请求参数
字段 |
是否可选 |
类型 |
描述 |
title |
否 |
String |
投票标题 |
desc |
否 |
String |
投票描述 |
share |
否 |
bool |
是否分享 |
questions |
否 |
String |
问题 |
问题参数
字段 |
是否可选 |
类型 |
描述 |
name |
否 |
String |
问题标题 |
type |
否 |
String |
类型,单选:RADIO_SELECT,多选:MULT_SELECT |
maxChoice |
否 |
int |
最多能选多少个选项 |
must |
否 |
bool |
是否必填 |
options |
否 |
Array |
选项列表 |
请求参数示例
{
"title":"这是一个投票",
"desc":"描述",
"share":true,
"questions":"[{'name':'87777','type':'RADIO_SELECT','maxChoice':1,'must':true,'options':['asd','sdf','asdf']}]"
}
响应参数
字段 |
类型 |
描述 |
resCode |
int |
响应码 |
resMessage |
String |
提示消息(根据language参数,选择语言返回) |
data |
json |
响应数据 |
成功返回
http/1.1 200 OK
{
"resCode": 1,
"resMessage": "success"
}
失败返回
http/1.1 200 OK
{
"resCode": -1,
"resMessage": "xxx"
}