Skip to main content
GET
/
siprec_connectors
/
{connector_name}
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const siprecConnector = await client.siprecConnectors.retrieve('connector_name');

console.log(siprecConnector.data);
{
  "data": {
    "record_type": "siprec_connector",
    "name": "siprec-connector",
    "host": "siprec.telnyx.com",
    "port": 5060,
    "app_subdomain": "my-app-domain",
    "created_at": "2024-01-23T18:10:02.574Z",
    "updated_at": "2024-01-23T18:10:02.574Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

connector_name
string
required

Uniquely identifies a SIPREC connector.

Response

Return details of the SIPREC connector.

data
object
required