move_folder
Relocate folders by ID within Carbon Voice, enabling users to move them into another folder or workspace. Simplify folder organization and management.
Instructions
Move a folder by its ID. Move a Folder into another Folder or into a Workspace.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder_id | No | Folder ID | |
id | Yes | ||
workspace_id | No | Workspace ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"folder_id": {
"description": "Folder ID",
"type": "string"
},
"id": {
"type": "string"
},
"workspace_id": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}