Skip to main content

Overview

Prevents specified users from sending private messages.

Request

Authentication: Add authentication headers to the request. See Authentication.

Method: POST

Rate limit: 100 requests/second

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

Content-Type: application/json

Request Parameters

ParameterData TypeRequiredDescription
user_idsarrayYesUser IDs to block from sending private messages. Each user ID can contain up to 32 characters.

Request Example

POST /apigateway/private/globalmutemembers/add HTTP/1.1
appkey: appkey
signature: 2e639ae3600a4sdff61fb88b76f485b
nonce: nonce
timestamp: 1672568121910
Content-Type: application/json

{
"user_ids":["user1","user2"]
}

Response Example

{
"code":0,
"msg":"sucess"
}