Skip to main content
POST
/
api
/
voice-profile
/
create
/
Create Voice Profile API Endpoint
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"
}

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
profile_name
string
required
Minimum length: 1
api_key
string
required
Minimum length: 1
region
string
required
Minimum length: 1
provider
string
required
Minimum length: 1

Response

Successfully created 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