Skip to main content

Query global mute user list

Query the list of users who have been globally muted in chatrooms under the App Key. The returned result includes the unmute time.

Request method

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

Rate limit: 100 requests per second

Signature rule: All server API requests require signature verification. For details, see API request signature.

Body parameters

None

Request example

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

Response

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

Return valueReturn typeDescription
codeIntReturn code, 200 indicates success.
usersStringArray of muted users.
timeStringUnmute time. Accurate to the second, in the format YYYY-MM-DD HH:MM:SS, e.g., 2022-09-25 16:12:38. Note: The value of time is related to the data center of the app. If your app uses the China (Beijing) Data Center, time is in Beijing time. If your app uses the global data center, time is in UTC time.
userIdStringID of the muted user.

Response example

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

{
"code":200,
"users":[{
"time":"2015-09-25 16:12:38",
"userId":"2582"
}]
}