PATCH
/
v1
/
voices
/
{id}
/
rename
Rename a Voice
curl --request PATCH \
  --url https://api.bland.ai/v1/voices/{id}/rename \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "name": "<string>"
}'
{
  "voice_id": 12345,
  "name": "Updated Voice Name"
}

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

id
string
required
The id of the voice to update.

Body

name
string
required
The new name for your cloned voice.

Response

voice_id
integer
The unique identifier of the renamed voice.
name
string
The updated name of the voice.
{
  "voice_id": 12345,
  "name": "Updated Voice Name"
}