Skip to main content
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"
}

Documentation Index

Fetch the complete documentation index at: https://docs.bland.ai/llms.txt

Use this file to discover all available pages before exploring further.

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"
}

Docs for agents: llms.txt