v53

OpenAPI 3.1.0raw.githubusercontent.com2026-08-041,1941,9384.1 MB
SIPREC Connectors

Update a SIPREC connector

Updates a stored SIPREC connector configuration.

put/siprec_connectors/{connector_name}

Path parameters

connector_namestring required

Uniquely identifies a SIPREC connector.

Request body

app_subdomainstring

Subdomain to route the call when using Telnyx SRS (optional for non-Telnyx SRS).

hoststring required

Hostname/IPv4 address of the SIPREC SRS.

namestring required

Name for the SIPREC connector resource.

portinteger required

Port for the SIPREC SRS.

Example request

{
  "app_subdomain": "my-app",
  "host": "siprec.telnyx.com",
  "name": "my-siprec-connector",
  "port": 5060
}

Response

Return details of the SIPREC connector.

Example response

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