访问路径:api/thirdTag/delThirdTag
接口说明:删除运营标签
URL结构
https://open.rabbitpre.com/api/thirdTag/delThirdTag
接口协议:HTTPS
HTTP请求方式:POST
请求参数
参数 | 必选 | 类型 | 说明 |
updateOrDelThirdTag | true | Oject | 删除标签对象 |
thirdTagId | true | String | 第三方标签ID |
thirdOrgId | true | String | 第三方企业ID |
type | true | Integer | 类型 0 更新 1 删除(删除 默认为1) |
thirdTagValueList | true | List | 标签值集合 |
thirdTagValueId | true | String | 第三方标签值ID |
请求示例
换行和缩进只是为了更好的展示:
https://open.rabbitpre.com/api/thirdTag/delThirdTag
请求JSON 参数
删除整个标签
{
"opfid" : "123456" ,
"nonce" :123456,
"timestamp" : "1567407713178" ,
"signature" : "c2a94f877f3389ca4b11eb82523f9873d81111111" ,
"updateOrDelThirdTag" :{
"thirdTagId" : "第三方标签ID" ,
"thirdOrgId" : "第三方企业ID" ,
"type" :1
}
}
删除标签下面标签值
{
"opfid" : "123456" ,
"nonce" :123456,
"timestamp" : "1567407713178" ,
"signature" : "c2a94f877f3389ca4b11eb82523f9873d81111111" ,
"updateOrDelThirdTag" :{
"thirdTagValueList" :[
{
"thirdTagValueId" : "第三方标签值ID"
}
]
}
}
|
返回成功示例
{
"code" : "200" ,
"errorCode" : "SUCCESS" ,
"msg" : "ok" ,
"data" : true
}
|