Skip to main content
POST
/
api
/
calls
/
voice-ai
/
config
Save organization-level Voice AI configuration (superadmin)
curl --request POST \
  --url https://your-instance.example.com/api/calls/voice-ai/config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "aiVoiceProvider": "elevenlabs",
  "elevenlabsApiKey": "sk_eleven_xxxxxxxxxxxxxxxx",
  "generateToolSecret": true,
  "sinchEstProjectId": "sinch-est-project-abc",
  "sinchEstTrunkId": "sinch-est-trunk-xyz",
  "sinchEstTrunkDomain": "example.sip.sinch.com"
}
'
{
  "success": true,
  "message": "Configuration saved"
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Only the supplied fields are updated (no field is required, since admins partially edit).

aiVoiceProvider
string | null

e.g. elevenlabs. Pass null to clear.

elevenlabsApiKey
string
generateToolSecret
boolean

When true, a fresh 32-byte hex elevenlabsToolSecret is generated and stored.

sinchEstKeyId
string
sinchEstKeySecret
string
sinchEstProjectId
string
sinchEstTrunkId
string
sinchEstTrunkDomain
string

Response

Configuration saved

success
enum<boolean>
required
Available options:
true
message
string