PATCH
/
voices
/
{voice_id}
curl --request PATCH \
  --url https://eu-west-1.api.neuphonic.com/voices/{voice_id} \
  --header 'Content-Type: multipart/form-data' \
  --header 'X-API-KEY: <api-key>'
{
  "data": {
    "message": "<string>",
    "voice_name": "<string>",
    "voice_tags": [
      "<string>"
    ],
    "voice_id": "<string>"
  }
}

Authorizations

X-API-KEY
string
header
required

API Key Authentication. Get your API key from the Neuphonic website.

Path Parameters

voice_id
string
required

The unique identifier of the voice to be updated. This is passed as a query parameter.

Query Parameters

new_voice_name
string

New name for this voice.

new_voice_tags
string[]

New array of strings containing tags to the voice.

Body

multipart/form-data
new_voice_file
file

The new audio file to update the cloned voice.

Response

200
application/json
Successful Response
data
object

The data payload for the response.