Nurama Developers

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

PropertyTypeRequiredDescription
folderIdstringyesUUID of the folder.
tagIdstringyesUUID 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
}

On this page