cURL
curl --request POST \ --url https://backend.clipvision.ai/api/voice-profile/create/ \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "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 create a new 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 created the voice profile
Voice Profile OpenAPI Schema