Vapi · Schema

CloneVoiceDTO

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
name string This is the name of the cloned voice in the provider account.
description string This is the description of your cloned voice.
labels string Serialized labels dictionary for the voice.
files array These are the files you want to use to clone your voice. Only Audio files are supported.
View JSON Schema on GitHub

JSON Schema

vapi-clonevoicedto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CloneVoiceDTO",
  "title": "CloneVoiceDTO",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "This is the name of the cloned voice in the provider account."
    },
    "description": {
      "type": "string",
      "description": "This is the description of your cloned voice."
    },
    "labels": {
      "type": "string",
      "description": "Serialized labels dictionary for the voice."
    },
    "files": {
      "description": "These are the files you want to use to clone your voice. Only Audio files are supported.",
      "type": "array",
      "items": {
        "type": "string",
        "format": "binary"
      }
    }
  },
  "required": [
    "name",
    "files"
  ]
}