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
| Property | Type | Required | Description |
|---|---|---|---|
folderId | string | yes | UUID of the folder. |
name | string | yes | New 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
}