Talkr AI
API ReferenceTelephony Configurations

List Supported Providers

Discover available telephony providers and the credential fields each one requires

Use this endpoint to discover which telephony providers Talkr supports and the exact credential fields each one expects. The response drives the configuration form in the dashboard, and is the recommended way to build a provider-agnostic integration.

GET
/api/v1/organizations/telephony-providers/metadata

Header Parameters

authorization?string|null
X-API-Key?string|null

Response Body

application/json

application/json

curl -X GET "https://example.com/api/v1/organizations/telephony-providers/metadata"
{  "providers": [    {      "provider": "string",      "display_name": "string",      "fields": [        {          "name": "string",          "label": "string",          "type": "string",          "required": true,          "sensitive": true,          "description": "string",          "placeholder": "string",          "options": [            {              "value": "string",              "label": "string"            }          ],          "visible_when": {            "field": "string",            "equals": null          },          "section": "string"        }      ],      "docs_url": "string"    }  ]}