Skip to main content

Overview

Deletes specified sensitive words. After deletion, these words are no longer used to moderate the content of private-chat and group-chat text messages.

Request

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

Method: POST

Rate limit: 100 requests/second

Endpoint: https://API domain/apigateway/sensitivewords/del

Content-Type: application/json

Request Example

POST /apigateway/sensitivewords/del HTTP/1.1
appkey: appkey
signature: 2e639ae3600a4sdff61fb88b76f485b
nonce: nonce
timestamp: 1672568121910
Content-Type: application/json

{
"words":["xxxxx","yyyyy"]
}

Request Parameters

ParameterData TypeRequiredDescription
wordsarrayYesSensitive words to delete. Each array element can contain up to 255 characters.

Response Example

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