- API在线调试指南
- IM账号管理
- 用户名片管理
- 好友管理
- 静音管理
- 黑名单管理
- 消息管理
- 会话功能
- 群组功能
- 聊天室功能
- 聊天室管理
- 聊天室成员
- 聊天室队列
- 广播消息管理
- 系统通知管理
- 发布订阅
- 翻译
更新聊天室队列
开发中
PATCH
/im/v2/room_queues/{room_id}
请求参数
Path 参数
room_id
integer
必需
Header 参数
AppKey
string
必需
默认值:
{{AppKey}}
X-custom-traceid
string
可选
默认值:
{% mock 'uuid' %}
Nonce
string
必需
默认值:
{{Nonce}}
CurTime
string
必需
默认值:
{{CurTime}}
CheckSum
string
必需
默认值:
{{CheckSum}}
Body 参数application/json
notification_config
object (NotificationConfig)
可选
notification_enabled
boolean
可选
默认值:
true
notification_extension
string
可选
high_priority
integer
可选
默认值:
0
high_priority_policy
integer
可选
默认值:
0
route_config
object (RouteConfig)
可选
route_enabled
boolean
可选
默认值:
true
route_environment
string
可选
element_list
array[object (ChatroomQueueElement) {5}]
可选
element_key
string
可选
element_value
string
可选
element_account_id
string
可选
element_transient
boolean
可选
element_add_policy
integer
可选
operator_account_id
string
可选
示例
{
"notification_config": {
"notification_enabled": true,
"notification_extension": "string",
"high_priority": 0,
"high_priority_policy": 0
},
"route_config": {
"route_enabled": true,
"route_environment": "string"
},
"element_list": [
{
"element_key": "string",
"element_value": "string",
"element_account_id": "string",
"element_transient": true,
"element_add_policy": 0
}
],
"operator_account_id": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://open.yunxinapi.com/im/v2/room_queues/' \
--header 'AppKey;' \
--header 'X-custom-traceid: {% mock '\''uuid'\'' %}' \
--header 'Nonce;' \
--header 'CurTime;' \
--header 'CheckSum;' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
code
integer
状态码
msg
string
状态信息
data
object (ChatroomQueueUpdateResponse)
返回对象
room_id
integer <int64>
可选
queue_size_limit
integer
可选
queue_size
integer
可选
insert_element_list
array[string]
可选
update_element_list
array[string]
可选
failed_element_list
array[object (FailedElement) {3}]
可选
示例
{
"code": 0,
"msg": "",
"data": {
"roomId": 0,
"queueSizeLimit": 0,
"queueSize": 0,
"insertElementList": [
""
],
"updateElementList": [
""
],
"failedElementList": [
{
"elementKey": "",
"errorMsg": "",
"errorCode": 0
}
]
}
}
修改于 2025-03-27 02:50:22