Skip to main content

Overview

Queries tags assigned to specified users.

Request

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

Method GET

Rate limit 100 requests/second

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

Content-Type application/json

Request Example

GET /apigateway/usertags/query?user_ids=userid1,userid2 HTTP/1.1
appkey: appkey
signature: 2e639ae3600a4sdff61fb88b76f485b
nonce: nonce
timestamp: 1672568121910
Content-Type: application/json

Request Parameters

ParameterData TypeRequiredDescription
user_idsarrayYesIDs of the users to query, separated by commas. Each user ID can contain up to 32 characters.

Response Example

{
"code":0,
"msg":"sucess",
"data":{
"user_tags":[
{
"user_id":"userid1",
"tags":["aa","bb"]
},
{
"user_id":"userid2",
"tags":["aa","bb"]
}
]
}
}