临时禁言聊天室成员
PATCH
/im/v2/room_members/{account_id}/actions/temp_chat_banned请求参数
Path 参数
account_id
string
必需
需要设置临时禁言的成员账号 ID。
Body 参数application/json
room_id
integer <long>
聊天室 ID
聊天室 ID。
operator_account_id
string
操作者账号 ID
操作者账号 ID。
chat_banned
boolean
是否设置为禁言状态
是否设置为禁言状态。true:设置为禁言状态;false:取消禁言状态。
chat_banned_duration
integer <long>
临时禁言的时间(秒)
设置临时禁言的时间(秒)。chat_banned 为 true 时,该参数必填。禁言时间最大不能超过 2592000 秒(30天)。
notification_enabled
boolean
是否发送通知消息
操作完成后是否发送通知消息。false(默认):不发送;true:发送。
notification_extension
string
通知扩展字段
通知扩展字段,JSON 格式,长度上限为 2048 位字符。
示例
{
"chat_banned": false,
"room_id": 48,
"operator_account_id": "59",
"notification_extension": "do cillum",
"chat_banned_duration": 40,
"notification_enabled": false
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
msg
string
必需
data
object
必需
mute_duration
integer <long>
禁言时长。
示例
{
"code": 200,
"msg": "success",
"data": {
"mute_duration": 0
}
}
最后修改时间: 8 个月前