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:
Parameter | Type | Required | Description |
---|---|---|---|
num | Int | No | Number of rows to fetch. Default is 100, maximum is 200. |
offset | Int | No | Starting position for the query. Default is 0. |
type | String | Yes | Conversation 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 Value | Type | Description |
---|---|---|
code | Number | Return code. 200 indicates success. |
total | Int | Total number of muted users. |
users | String[] | 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"
]
}