Skip to main content

Overview

Retrieves the list of users who are blocked from sending private messages.

Request

Authentication Add authentication headers to the request. See Authentication

Method GET

Rate limit 100 requests/second

Endpoint https://API domain/apigateway/private/globalmutemembers/query

Content-Type application/json

Request Parameters

ParameterData TypeRequiredDescription
offsetstringNoPagination offset returned by the previous request. Omit it for the first request.
limitintNoNumber of users to retrieve. Default: 100. Maximum: 1,000.

Request Example

GET /apigateway/private/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"
}
}