The SIP Registration Status endpoint exposes the current registration state of a SIP endpoint — whether the endpoint is registered, when it last registered, and the last response Telnyx received from the registrar. A single endpoint serves the three credential types Telnyx supports:Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
uac_third-party_credential— credentials Telnyx uses to register to your PBX (see UAC Connections)telephony_credential— ephemeral SIP credentials issued through the Telephony Credentials APIsip_credential_connection— traditional SIP Credential Connections that register to Telnyx
Phase 1 (live today) covers
uac_third-party_credential. telephony_credential and sip_credential_connection will be added in upcoming phases without changing the path or request shape.Endpoint
Query parameters
| Parameter | Required | Description |
|---|---|---|
credential_type | yes | One of uac_third-party_credential, telephony_credential, sip_credential_connection |
connection_id | yes | Identifier of the connection or credential to look up |
user_id | yes | Owner of the connection — used to authorize the lookup |
Authentication
Standard Telnyx v2 Bearer authentication.Response
A successful lookup returns the registration state plus the third-party/internal settings that produced it.Field reference
| Field | Description |
|---|---|
pair_state | Internal pairing state (e.g. ACTIVE, INACTIVE) |
registered | true when the endpoint is currently registered |
last_registration_response | SIP response code/text from the last registration attempt (e.g. 200 OK, 401 Unauthorized) |
third-party_uac_settings | The outward-facing SIP settings used for registration (password is always redacted) |
internal_uac_settings | The internal routing target the connection delivers calls to |
Errors
| Status | Meaning |
|---|---|
400 | Missing or invalid query parameters |
401 | Missing/invalid API key |
403 | Connection exists but is not owned by user_id |
404 | No connection or credential matches connection_id |
Related
- UAC Connections — configure the connections this endpoint reports on
- SIP Trunking Overview