Skip to main content
PATCH
/
v1
/
custom-voices
/
{voice_id}
Update cloned voice (partial update)
curl --request PATCH \
  --url https://supertoneapi.com/v1/custom-voices/{voice_id} \
  --header 'Content-Type: application/json' \
  --header 'x-sup-api-key: <api-key>' \
  --data '{
  "name": "My Updated Voice",
  "description": "An updated warm and friendly voice for customer service"
}'
{
  "voiceId": "voice_123456789",
  "name": "My Updated Voice",
  "description": "An updated warm and friendly voice for customer service"
}

Endpoint

https://supertoneapi.com/v1/custom-voices/{voice_id}

Authorizations

x-sup-api-key
string
header
required

Path Parameters

voice_id
string
required

Body

application/json
name
string

Name of the voice

Example:

"My Updated Voice"

description
string

Description of the voice

Example:

"An updated warm and friendly voice for customer service"

Response

Voice updated successfully

voiceId
string
required

Unique identifier for the voice

Example:

"voice_123456789"

name
string
required

Name of the voice

Example:

"My Updated Voice"

description
string
required

Description of the voice

Example:

"An updated warm and friendly voice for customer service"