untag_asset
Remove a tag from an asset.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Remove a tag from an asset. No-op if the tag is not currently applied.
Input
| Property | Type | Required | Description |
|---|---|---|---|
assetId | string | yes | UUID of the asset. |
tagId | string | yes | UUID of the tag to remove. |
JSON Schema
{
"type": "object",
"properties": {
"assetId": {
"type": "string",
"description": "UUID of the asset."
},
"tagId": {
"type": "string",
"description": "UUID of the tag to remove."
}
},
"required": [
"assetId",
"tagId"
],
"additionalProperties": false
}