Headers
Your API key for authentication.
Path Parameters
The
id
of the voice to update.Body
The new name for your cloned voice.
Response
The unique identifier of the renamed voice.
The updated name of the 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"
}
Update the name of an existing cloned 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"
}
id
of the voice to update.{
"voice_id": 12345,
"name": "Updated Voice Name"
}
Was this page helpful?