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:
Parameter | Type | Required | Description |
---|---|---|---|
size | Int | No | The number of chatroom mute list items per page. Default is 50, max is 1000. |
page | Int | No | The 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 Value | Return Type | Description |
---|---|---|
code | Number | Return code, 200 for success. |
chatroomIds | String[] | Array of muted chatrooms. |
Response Example
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"code":200,
"chatroomIds":[
"123",
"234"
]
}