v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Voice Clones

Update a voice clone

Updates the name, language, or gender of a voice clone.

patch/voice_clones/{id}

Path parameters

idstring uuid required

The voice clone UUID.

Request body

gender'male' | 'female' | 'neutral'

Updated gender for the voice clone.

languagestring

Updated ISO 639-1 language code or auto.

namestring required

New name for the voice clone.

Example request

{
  "name": "updated-clone"
}

Response

Voice clone updated successfully.

Example response

{
  "data": {
    "created_at": "2024-01-01T00:00:00Z",
    "gender": "male",
    "id": "660f9511-f3ac-52e5-b827-557766551111",
    "label": "Speak in a warm, friendly tone",
    "language": "en",
    "model_id": "Qwen3TTS",
    "name": "clone-narrator",
    "provider": "Telnyx",
    "provider_supported_models": [
      "Qwen3TTS"
    ],
    "provider_voice_id": "660f9511-f3ac-52e5-b827-557766551111",
    "record_type": "voice_clone",
    "source_voice_design_id": "550e8400-e29b-41d4-a716-446655440000",
    "source_voice_design_version": 1,
    "status": "active",
    "updated_at": "2024-01-01T00:00:00Z"
  }
}