Skip to main content

Overview

Deletes specified tags from users.

Request

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

Method POST

Rate limit 100 requests/second

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

Content-Type application/json

Request Example

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

{
"user_tags":[
{
"user_id":"xxxxx",
"tags":["aa","bb"]
}
]
}

Request Parameters

ParameterData TypeRequiredDescription
user_tagsarrayYesUsers whose tags are being deleted.
user_tags[].user_idstringYesUser ID. Maximum length: 32 characters.
user_tags[].tagsarrayYesTags to delete.

Response Example

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