...
代码块 |
---|
curl -X POST -k -H 'Content-Type: application/json; charset=utf-8' -i https://integrate.rabbitpre.com/api/open/api/audience/user/tag/batchlist --data '{ "audienceUserIdList": [ 827123,456 ] }' |
返回示例
代码块 |
---|
{
"code":"200",
"errorCode":"SUCCESS",
"msg":"ok",
"data":[
{
"orgId":"928a852d-e749-45be-bc31-f8e23f07b999",
"audienceUserId":"123",
"tagList":[
{
"tagId": "613729315330330624",
"execCount": 1,
"tagTime": 1567060862103,
"tagName": "标签1",
"tagType": "OPERATE",
"tagValueList":[
{
"tagValueId": "613729315330330614",
"tagValue": "标签值1",
"markCount": 1
}
]
}
]
},
{
"orgId":"928a852d-e749-45be-bc31-f8e23f07b999",
"audienceUserId":"456",
"tagList":[
{
"tagId":"61372931533033000",
"execCount":2,
"tagTime":1567060862103,
"tagName": "标签2",
"tagType": "OPERATE",
"tagValueList":[
{
"tagValueId": "61372931533033002",
"tagValue": "标签值2",
"markCount": 1
}
]
}
]
}
]
} |
...