Nurama Developers

update_folder_name

Rename a folder.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

Rename a folder. The folder's path-based FileSystem entry is updated atomically, so child assets stay reachable under the new name.

Input

PropertyTypeRequiredDescription
folderIdstringyesUUID of the folder.
namestringyesNew folder name. min length 1

JSON Schema

{
  "type": "object",
  "properties": {
    "folderId": {
      "type": "string",
      "description": "UUID of the folder."
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "New folder name."
    }
  },
  "required": [
    "folderId",
    "name"
  ],
  "additionalProperties": false
}

On this page