Skip to main content
GET
/
api
/
calls
/
providers
/
config
Get full voice provider configuration (superadmin)
curl --request GET \
  --url https://your-instance.example.com/api/calls/providers/config \
  --header 'Authorization: Bearer <token>'
{
  "activeProvider": "sinch",
  "providers": [
    {
      "provider": "sinch",
      "isEnabled": true,
      "isConfigured": true,
      "phoneNumber": "+14165550100"
    }
  ],
  "userPhoneNumbers": [
    {
      "provider": "sinch",
      "phoneNumber": "+14165550100",
      "isDefault": true
    }
  ]
}

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.

Query Parameters

organizationId
string

Superadmin-only override to target a different org.

Response

Provider configuration with credentials

activeProvider
enum<string> | null
Available options:
twilio,
sinch,
null
providers
object[]
userPhoneNumbers
object[]