Skip to main content
GET
/
v1
/
agents
/
{agentId}
/
telephony
/
connectors
/
{connectorId}
Get a connector by ID
curl --request GET \
  --url https://api.us.poly.ai/v1/agents/{agentId}/telephony/connectors/{connectorId} \
  --header 'x-api-key: <api-key>'
{
  "connectorId": "<string>",
  "name": "<string>",
  "accountId": "<string>",
  "projectId": "<string>",
  "clientEnv": "<string>",
  "variantId": "<string>",
  "asrLangCode": "<string>",
  "ttsLangCode": "<string>",
  "voiceName": "<string>",
  "disableHandoff": true
}

Authorizations

x-api-key
string
header
required

Path Parameters

agentId
string
required
connectorId
string
required

Response

Successful response

A connector: the voice, language, variant, and environment bundle that handles incoming calls. Multiple phone numbers can share one connector.

connectorId
string
required

Unique connector identifier

name
string
required

Connector display name

accountId
string
required

Account this connector belongs to

projectId
string
required

Project this connector belongs to

clientEnv
string
required

Client environment (sandbox, pre-release, live)

variantId
string
required

Assigned variant ID (empty string if unassigned)

asrLangCode
string
required

ASR language code (e.g. en-US)

ttsLangCode
string
required

TTS language code (e.g. en-US)

voiceName
string
required

Google TTS voice name (e.g. en-US-Neural2-A)

disableHandoff
boolean
required

Whether call handoff is disabled

Last modified on April 22, 2026