tag_folder
Apply a tag to a folder.
Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.
Apply a tag to a folder. The tag must already exist on the folder's owning resource (typically the project).
Input
| Property | Type | Required | Description |
|---|---|---|---|
folderId | string | yes | UUID of the folder. |
tagId | string | yes | UUID of the tag to apply. |
JSON Schema
{
"type": "object",
"properties": {
"folderId": {
"type": "string",
"description": "UUID of the folder."
},
"tagId": {
"type": "string",
"description": "UUID of the tag to apply."
}
},
"required": [
"folderId",
"tagId"
],
"additionalProperties": false
}