API Overview
Message Callbacks
Status Codes
Overview
Retrieves the list of users who are blocked from sending group messages.
Request
Authentication Add authentication headers to the request. See Authentication
Method
GET
Rate limit
100 requests/second
Endpoint https://API domain/apigateway/group/globalmutemembers/query
Content-Type
application/json
Request Parameters
| Parameter | Data Type | Required | Description | |
|---|---|---|---|---|
| offset | string | No | Pagination offset returned by the previous request. Omit it for the first request. | |
| limit | int | No | Number of users to retrieve. Default: 100. Maximum: 1,000. |
Request Example
GET /apigateway/group/globalmutemembers/query?offset=xx&limit=100 HTTP/1.1
appkey: appkey
signature: 2e639ae3600a4sdff61fb88b76f485b
nonce: nonce
timestamp: 1672568121910
Content-Type: application/json
Response Example
{
"code":0,
"msg":"sucess",
"data":{
"items":[
{
"user_id":"xxx",
"created_time":172987634564
}
],
"offset":"xxxx"
}
}