Query Group Mute All
Query whether a group is set to mute all members. The specific functions are as follows:
- When a valid group ID is passed, query whether the specified single group or multiple groups have been set to mute all members
- When no group ID is passed, query the list of all groups under the App Key that have been set to mute all members
Request Method
POST: https://data center domain/group/ban/query.json
Rate Limit: 100 requests per second
Signature Rule: All server API requests must follow the signature rule. For details, see API Request Signature.
Body Parameters
The HTTP request body can include the following HTTP form parameters:
Parameter | Type | Required | Description |
---|---|---|---|
groupId | String | No | Group ID. You can query a single or multiple groups at a time, with a maximum of 20 groups per query. |
page | int | No | Page number. If this parameter is passed, the groupId parameter becomes invalid. If groupId is not passed, the default is 1. |
size | int | No | Number of items per page. If this parameter is passed, the groupId parameter becomes invalid. If groupId is not passed, the default is 50, with a maximum of 200. |
Request Example
POST /group/ban/query.json HTTP/1.1
Host: api.rong-api.com
App-Key: c9kqb3rdkbb8j
NONCE: 97
TIMESTAMP: 1480479442
SIGNATURE: 9774e3d91656dc92df8aff294d46d6a506412538
Content-Type: application/x-www-form-urlencoded
Response
The HTTP response body contains a JSON object with the following structure:
Return Value | Return Type | Description |
---|---|---|
code | Number | Return code, 200 indicates success. |
groupinfo | String[] | Muted group information data. |
groupId | String | Group ID. |
stat | Int | Mute status, 0 indicates not muted, 1 indicates muted. |
Response Example
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
{
"code":200,
"groupinfo":[
{
"groupId": "groupId1",
"stat":1
},
{
"groupId": "groupId2",
"stat":1
}
]
}