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