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 Muted Users in One-to-One Chat

Query users who are muted in one-to-one chat conversations.

Request Method

POST: https://data center domain/user/chat/fb/querylist.json

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

Rate Limit: 100 requests per second

Body Parameters

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

ParameterTypeRequiredDescription
numIntNoNumber of rows to fetch. Default is 100, maximum is 200.
offsetIntNoStarting position for the query. Default is 0.
typeStringYesConversation type. Currently supports one-to-one chat: PERSON.

Request Example

POST /user/chat/fb/querylist.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

num=10&offset=0&type=PERSON

Response

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

Return ValueTypeDescription
codeNumberReturn code. 200 indicates success.
totalIntTotal number of muted users.
usersString[]Array of muted users.

Response Example

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

{
"code": 200,
"total": 3,
"users": [
"all_00001",
"all_00002",
"all_00003"
]
}