Delete Tag¶
The Delete Tag node deletes the specified tags or all tags of the asset.
Node Type¶
EnOS.
Input and Output Ability¶
This node has multiple entry points and 2 exit points (success/failure).
Node Properties¶

Name
The name for this node.
Description
The description for this node.
Samples¶
Input Sample¶
{
"MetaData": {
"messageType": "DeleteTag",
"assetId": "assetId",
"deviceKey": "deviceKey",
"productKey": "productKey",
"orgId": "yourOrgId",
"ts": "1654592492300"
},
"Body": {
"tags": [
"tag1",
"tag2"
]
}
}
Output Sample¶
{
"MetaData": {
"messageType": "DeleteTag",
"assetId": "assetId",
"deviceKey": "deviceKey",
"productKey": "productKey",
"orgId": "yourOrgId",
"componentResult": "Success",
"ts": "1654592492300"
},
"Body": {
"tags": [
"tag1",
"tag2"
]
}
}