update_folder_name
Rename a folder on Carbon Voice by specifying its ID and providing a new name to organize and manage conversations or voice memos effectively.
Instructions
Update a folder name by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
name | Yes | New Folder Name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"description": "New Folder Name",
"type": "string"
}
},
"required": [
"id",
"name"
],
"type": "object"
}