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