Skip to main content
POST
/
api
/
calls
/
providers
/
active
Set the active voice provider (superadmin)
curl --request POST \
  --url https://your-instance.example.com/api/calls/providers/active \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "provider": "sinch"
}
'
{
  "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
provider
enum<string>
required

Voice provider to activate for the org; must already have credentials configured.

Available options:
twilio,
sinch

Response

Active provider switched

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