create_voicememo_message
Generate and send a VoiceMemo Message by converting a transcript to audio or attaching links, enabling easy communication through Carbon Voice.
Instructions
Create a VoiceMemo Message. In order to create a VoiceMemo Message, you must provide a transcript or link attachments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folder_id | No | Folder ID (not allowed when workspace_id specified is different from the folder_id) | |
links | No | Array of links to be attached to the message | |
transcript | No | The Message transcript will be used to generate audio using text-to-speech | |
workspace_id | No | Workspace ID (not allowed when folder_id specified is different from the folder_id) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"folder_id": {
"description": "Folder ID (not allowed when workspace_id specified is different from the folder_id)",
"type": "string"
},
"links": {
"description": "Array of links to be attached to the message",
"items": {
"type": "string"
},
"type": "array"
},
"transcript": {
"description": "The Message transcript will be used to generate audio using text-to-speech",
"type": "string"
},
"workspace_id": {
"description": "Workspace ID (not allowed when folder_id specified is different from the folder_id)",
"type": "string"
}
},
"type": "object"
}