Skip to main content
POST
/
api
/
device
/
tag
/
relation
/
remove
删除标签关联关系
curl --request POST \
  --url https://api.example.com/api/device/tag/relation/remove \
  --header 'Authentication: <authentication>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tagId": "<string>",
  "targetId": "<string>"
}
'
{
  "code": 123,
  "message": "<string>"
}

Headers

Authentication
string
default:{{token_1}}
required

Body

application/json
tagId
string
required

标签ID

targetId
string
required

关联目标ID,多个可逗号间隔

Response

200 - application/json

操作成功

code
integer
message
string