create_folder
Generate a new folder in Carbon Voice to organize voicememos or prerecorded messages. Specify folder name, type, and workspace for efficient voice data management.
Instructions
Create a new folder.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the Folder | |
parent_folder_id | No | Parent Folder ID | |
type | Yes | Folder type | |
workspace_id | Yes | Workspace ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the Folder",
"type": "string"
},
"parent_folder_id": {
"description": "Parent Folder ID",
"type": "string"
},
"type": {
"description": "Folder type",
"enum": [
"voicememo",
"prerecorded"
],
"type": "string"
},
"workspace_id": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"name",
"type",
"workspace_id"
],
"type": "object"
}