PUT
/
sound_clone
/
api
/
v1
/
voices
/
rename
/
{id}
curl --location --request PUT 'https://api.myvocal.ai/sound_clone/api/v1/voices/rename/7812' \
--header 'accessKey: xxx' \
--header 'Content-Type: application/json' \
--data '{
	"name": "rename"
}'
{
  "code": 1,
  "message": "Success",
}
accessKey
string
required
You can copy your api-key on https://www.myvocal.ai/profile after you have subscribed to Pro or Business Plan.

Path

id
Long
required
Your voiceId

Body

name
string
required
Your new voice name

Response

code
number
Indicates whether the call was successful. 1 if successful.
message
string
When an exception occurs, specific exception information will be provided in the message.
curl --location --request PUT 'https://api.myvocal.ai/sound_clone/api/v1/voices/rename/7812' \
--header 'accessKey: xxx' \
--header 'Content-Type: application/json' \
--data '{
	"name": "rename"
}'
{
  "code": 1,
  "message": "Success",
}