Skip to main content

Overview

Adds tags to users.

Request

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

Method POST

Rate limit 100 requests/second

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

Content-Type application/json

Request Example

POST /apigateway/usertags/add 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 to tag.
user_tags[].user_idstringYesID of the user to tag. Maximum length: 32 characters.
user_tags[].tagsarrayYesTags to add.

Response Example

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