Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Uniquely identifies a SIPREC connector.
Response
Return details of the SIPREC connector.
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"
}
}Returns details of a stored SIPREC connector.
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"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Uniquely identifies a SIPREC connector.
Return details of the SIPREC connector.
Show child attributes
Was this page helpful?