版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

换行和缩进只是为了更好的展示:

代码块
curl -X POST -k -Hheader 'Content-Type: application/json' --header 'Accept: application/json; charset=utf-8' -i ' --header 'X-Token: wuckL19mhgykNruZToLe56U0YP0' -d '{ \ 
   "audienceUserIdList": [ \ 
     123,456 \ 
   ] \ 
 }' 'https://integratedevintegrate.rabbitpre.com/api/open/api/audience/user/tag/batchlist --data '{ "audienceUserIdList": [ 123,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
                    	}
                	]
                }
            ]
        }
    ]
}

...