修改互动开关
请求地址
PUT /api/live/v1/room/{id}/interact-control
字段 |
是否可选 |
类型 |
描述 |
Authorization |
否 |
string |
认证信息,格式:bearer ${token} |
Accept-Language |
是 |
string |
选择语言,(zh-CN)(zh-TW)(en-US) 默认值: zh-CN |
Content-Type |
否 |
string |
application/x-www-form-urlencoded |
请求参数
字段 |
是否可选 |
类型 |
描述 |
privateChatSwitch |
否 |
boolean |
私聊开关 |
groupChatSwitch |
否 |
boolean |
群聊开关 |
giftSwitch |
否 |
boolean |
礼物开关 |
meetingReceiveGroupChatSwitch |
否 |
boolean |
群聊消息到客户端开关 |
响应参数
字段 |
类型 |
描述 |
resCode |
int |
响应码 |
resMessage |
String |
提示消息(根据language参数,选择语言返回) |
data |
json |
响应数据 |
成功返回
http/1.1 200 OK
{
"resCode":1,
"resMessage":"success",
"data":{
"groupChatSwitch":true,
"privateChatSwitch":true,
"giftSwitch":true,
"meetingReceiveGroupChatSwitch":true
}
}
失败返回
http/1.1 200 OK
{
"resCode": -1,
"resMessage": "xxx",
}