cURL
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" }
This API endpoint allows a user to edit an existing voice profile.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
1
Successfully edited the voice profile
Voice Profile OpenAPI Schema