Skip to main content
PUT
/
api
/
voice-profile
/
edit
/
Edit Voice Profile API Endpoint
curl --request PUT \
  --url https://backend.clipvision.ai/api/voice-profile/edit/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "voice_profile_id": 123,
  "profile_name": "<string>",
  "api_key": "<string>",
  "region": "<string>",
  "provider": "<string>"
}'
{
  "voice_profile_id": 1,
  "disabled": false,
  "profile_name": "New Voice Profile",
  "api_key": "api_key",
  "region": "westus2",
  "provider_id": "elevenlabs",
  "provider_name": "ElevenLabs"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
voice_profile_id
integer
required
profile_name
string
Minimum length: 1
api_key
string
Minimum length: 1
region
string
Minimum length: 1
provider
string
Minimum length: 1

Response

Successfully edited the voice profile

Voice Profile OpenAPI Schema

voice_profile_id
integer
disabled
boolean
profile_name
string
api_key
string
region
string
provider_id
string
provider_name
string