move_message_to_folder
Move voicememo or prerecorded messages to a specified folder or workspace using their unique IDs. Organize and manage your Carbon Voice messages efficiently.
Instructions
Move a message to a folder by its ID. Move a Message into another Folder or into a Workspace. Only allowed to move messages of type: voicememo,prerecorded.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder_id | No | Folder ID | |
message_id | Yes | Only allowed to add messages of type: voicememo,prerecorded | |
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"
},
"message_id": {
"description": "Only allowed to add messages of type: voicememo,prerecorded",
"type": "string"
},
"workspace_id": {
"description": "Workspace ID",
"type": "string"
}
},
"required": [
"message_id"
],
"type": "object"
}