Nurama Developers

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

PropertyTypeRequiredDescription
assetIdstringyesUUID of the asset.
tagIdstringyesUUID 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
}

On this page