update_folder
Rename a folder or move it to a new parent, including all nested contents. Re-parent by setting a new parent ID or move to root level.
Instructions
Rename a folder or suite and/or re-parent it. Set parentId to null to move it to root level, or omit it to keep the current parent. Returns the updated id, name, type, parentId, path, depth, casesCount and childFolderCount. A move carries everything nested inside along with it, so child paths change too; the new parent must be a folder in the same project, since suites cannot be parents and a folder cannot move into itself or into one of its own descendants. It never changes type and never creates or removes anything: use create_folder for a new folder or suite, delete_folder to archive one with all its contents, and move_test_case to relocate a single test case rather than its whole suite. Get folderId from list_folders.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New folder name | |
| folderId | Yes | Folder UUID to update | |
| parentId | No | New parent folder UUID. Set to null to move to root level. Omit to keep current parent. |