v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
External Connections

List all External Connections

This endpoint returns a list of your External Connections inside the 'data' attribute of the response. External Connections are used by Telnyx customers to seamless configure SIP trunking integrations with Telnyx Partners, through External Voice Integrations in Mission Control Portal.

get/external_connections

Query parameters

created_atstring

If present, connections with <code>created_at</code> date matching the given YYYY-MM-DD date will be returned.

external_sip_connection'zoom' | 'operator_connect'

If present, connections with <code>external_sip_connection</code> matching the given value will be returned.

idstring

If present, connections with <code>id</code> matching the given value will be returned.

Filter parameter for external connections (deepObject style). Supports filtering by connection_name, external_sip_connection, id, created_at, and phone_number.

{
  "connection_name": {
    "contains": "My Connection"
  },
  "created_at": "2022-12-31",
  "external_sip_connection": "zoom",
  "id": "1930241863466354012",
  "phone_number": {
    "contains": "+15555555555"
  }
}
numberinteger

The page number to load

sizeinteger

The size of the page

Consolidated page parameter (deepObject style). Originally: page[size], page[number]

Response

Successful response

Example response

{
  "data": [
    {
      "active": false,
      "created_at": "2022-06-29T19:23:59Z",
      "credential_active": false,
      "external_sip_connection": "zoom",
      "id": "1930241863466354012",
      "outbound": {
        "outbound_voice_profile_id": "1911630617284445511"
      },
      "record_type": "external_connection",
      "updated_at": "2022-06-29T19:39:47Z"
    }
  ],
  "meta": {
    "page_number": 2,
    "page_size": 25,
    "total_pages": 3,
    "total_results": 55
  }
}