Skip to main content
PATCH
/
v1
/
voices
/
{id}
/
rename
Rename Voice
curl --request PATCH \
  --url https://api.bland.ai/v1/voices/{id}/rename \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '
{
  "name": "<string>"
}
'
{
  "data": {
    "name": "DocTestRename",
    "voice_id": "73d4c04b-1e15-4272-9c7f-8d2955914ba9"
  },
  "errors": null
}

Overview

Renames a voice clone in your library. Only voices owned by your org can be renamed; default and shared-library voices return 403.

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

id
string
required
UUID of the voice to rename.

Body Parameters

name
string
required
New display name. 1-30 characters. Must be unique within your library.

Response

data.name
string
The updated display name.
data.voice_id
string
UUID of the renamed voice.
errors
null | array
null on success.
{
  "data": {
    "name": "DocTestRename",
    "voice_id": "73d4c04b-1e15-4272-9c7f-8d2955914ba9"
  },
  "errors": null
}

Docs for agents: llms.txt