Skip to main content

Starting March 27, 2026, RC is rebranded as Nexconn. Existing RC SDK customers can continue using this documentation. New customers should refer to the Nexconn developer documentation.

Query Chatroom Mute All List

Query the list of chatrooms where all members are muted under the App Key.

Request Method

POST: https://data center domain/chatroom/ban/query.json

Rate Limit: 100 requests per second

Signature Rule: All server API requests require rule validation. For details, see API Request Signature.

Body Parameters

The HTTP request body data format is application/x-www-form-urlencoded, supporting the following HTTP form parameters:

ParameterTypeRequiredDescription
sizeIntNoThe number of chatroom mute list items per page. Default is 50, max is 1000.
pageIntNoThe current page number. Default is page 1.

Request Example

POST /chatroom/ban/query.json HTTP/1.1
Host: api.rong-api.com
App-Key: uwd1c0sxdlx2
Nonce: 14314
Timestamp: 1592295337000
Signature: ef03d19bb860b4e90ce7bd5f50652a744bc2ce92
Content-Type: application/x-www-form-urlencoded

size=50&page=1

Response

The HTTP response body contains a JSON object with the following structure:

Return ValueReturn TypeDescription
codeNumberReturn code, 200 for success.
chatroomIdsString[]Array of muted chatrooms.

Response Example

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

{
"code":200,
"chatroomIds":[
"123",
"234"
]
}