{"id":"9f66e43e-c322-43ac-844f-21871da3026e","shortId":"3FsRyC","kind":"skill","title":"telnyx-sip-java","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Sip - Java\n\n## Installation\n\n```text\n<!-- Maven -->\n<dependency>\n    <groupId>com.telnyx.sdk</groupId>\n    <artifactId>telnyx</artifactId>\n    <version>6.36.0</version>\n</dependency>\n\n// Gradle\nimplementation(\"com.telnyx.sdk:telnyx:6.36.0\")\n```\n\n## Setup\n\n```java\nimport com.telnyx.sdk.client.TelnyxClient;\nimport com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;\n\nTelnyxClient client = TelnyxOkHttpClient.fromEnv();\n```\n\nAll examples below assume `client` is already initialized as shown above.\n\n## Error Handling\n\nAll API calls can fail with network errors, rate limits (429), validation errors (422),\nor authentication errors (401). Always handle errors in production code:\n\n```java\nimport com.telnyx.sdk.errors.TelnyxServiceException;\n\ntry {\n    var result = client.messages().send(params);\n} catch (TelnyxServiceException e) {\n    System.err.println(\"API error \" + e.statusCode() + \": \" + e.getMessage());\n    if (e.statusCode() == 422) {\n        System.err.println(\"Validation error — check required fields and formats\");\n    } else if (e.statusCode() == 429) {\n        // Rate limited — wait and retry with exponential backoff\n        Thread.sleep(1000);\n    }\n}\n```\n\nCommon error codes: `401` invalid API key, `403` insufficient permissions,\n`404` resource not found, `422` validation error (check field formats),\n`429` rate limited (retry with exponential backoff).\n\n## Important Notes\n\n- **Pagination:** List methods return a page. Use `.autoPager()` for automatic iteration: `for (var item : page.autoPager()) { ... }`. For manual control, use `.hasNextPage()` and `.nextPage()`.\n\n## List all Access IP Ranges\n\n`GET /access_ip_ranges`\n\n```java\nimport com.telnyx.sdk.models.accessipranges.AccessIpRangeListPage;\nimport com.telnyx.sdk.models.accessipranges.AccessIpRangeListParams;\n\nAccessIpRangeListPage page = client.accessIpRanges().list();\n```\n\nReturns: `cidr_block` (string), `created_at` (date-time), `description` (string), `id` (string), `status` (enum: pending, added), `updated_at` (date-time), `user_id` (string)\n\n## Create new Access IP Range\n\n`POST /access_ip_ranges` — Required: `cidr_block`\n\nOptional: `description` (string)\n\n```java\nimport com.telnyx.sdk.models.accessipranges.AccessIpRange;\nimport com.telnyx.sdk.models.accessipranges.AccessIpRangeCreateParams;\n\nAccessIpRangeCreateParams params = AccessIpRangeCreateParams.builder()\n    .cidrBlock(\"203.0.113.0/24\")\n    .build();\nAccessIpRange accessIpRange = client.accessIpRanges().create(params);\n```\n\nReturns: `cidr_block` (string), `created_at` (date-time), `description` (string), `id` (string), `status` (enum: pending, added), `updated_at` (date-time), `user_id` (string)\n\n## Delete access IP ranges\n\n`DELETE /access_ip_ranges/{access_ip_range_id}`\n\n```java\nimport com.telnyx.sdk.models.accessipranges.AccessIpRange;\nimport com.telnyx.sdk.models.accessipranges.AccessIpRangeDeleteParams;\n\nAccessIpRange accessIpRange = client.accessIpRanges().delete(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `cidr_block` (string), `created_at` (date-time), `description` (string), `id` (string), `status` (enum: pending, added), `updated_at` (date-time), `user_id` (string)\n\n## List connections\n\nReturns a list of your connections irrespective of type.\n\n`GET /connections`\n\n```java\nimport com.telnyx.sdk.models.connections.ConnectionListPage;\nimport com.telnyx.sdk.models.connections.ConnectionListParams;\n\nConnectionListPage page = client.connections().list();\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `connection_name` (string), `created_at` (string), `id` (string), `outbound_voice_profile_id` (string), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri)\n\n## Retrieve a connection\n\nRetrieves the high-level details of an existing connection. To retrieve specific authentication information, use the endpoint for the specific connection type.\n\n`GET /connections/{id}`\n\n```java\nimport com.telnyx.sdk.models.connections.ConnectionRetrieveParams;\nimport com.telnyx.sdk.models.connections.ConnectionRetrieveResponse;\n\nConnectionRetrieveResponse connection = client.connections().retrieve(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `connection_name` (string), `created_at` (string), `id` (string), `outbound_voice_profile_id` (string), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri)\n\n## List credential connections\n\nReturns a list of your credential connections.\n\n`GET /credential_connections`\n\n```java\nimport com.telnyx.sdk.models.credentialconnections.CredentialConnectionListPage;\nimport com.telnyx.sdk.models.credentialconnections.CredentialConnectionListParams;\n\nCredentialConnectionListPage page = client.credentialConnections().list();\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `password` (string), `record_type` (string), `rtcp_settings` (object), `sip_uri_calling_preference` (enum: disabled, unrestricted, internal), `tags` (array[string]), `updated_at` (string), `user_name` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Create a credential connection\n\nCreates a credential connection.\n\n`POST /credential_connections` — Required: `user_name`, `password`, `connection_name`\n\nOptional: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `rtcp_settings` (object), `sip_uri_calling_preference` (enum: disabled, unrestricted, internal), `tags` (array[string]), `webhook_api_version` (enum: 1, 2, texml), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n```java\nimport com.telnyx.sdk.models.credentialconnections.CredentialConnectionCreateParams;\nimport com.telnyx.sdk.models.credentialconnections.CredentialConnectionCreateResponse;\n\nCredentialConnectionCreateParams params = CredentialConnectionCreateParams.builder()\n    .connectionName(\"my name\")\n    .password(\"my123secure456password789\")\n    .userName(\"myusername123\")\n    .build();\nCredentialConnectionCreateResponse credentialConnection = client.credentialConnections().create(params);\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `password` (string), `record_type` (string), `rtcp_settings` (object), `sip_uri_calling_preference` (enum: disabled, unrestricted, internal), `tags` (array[string]), `updated_at` (string), `user_name` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Retrieve a credential connection\n\nRetrieves the details of an existing credential connection.\n\n`GET /credential_connections/{id}`\n\n```java\nimport com.telnyx.sdk.models.credentialconnections.CredentialConnectionRetrieveParams;\nimport com.telnyx.sdk.models.credentialconnections.CredentialConnectionRetrieveResponse;\n\nCredentialConnectionRetrieveResponse credentialConnection = client.credentialConnections().retrieve(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `password` (string), `record_type` (string), `rtcp_settings` (object), `sip_uri_calling_preference` (enum: disabled, unrestricted, internal), `tags` (array[string]), `updated_at` (string), `user_name` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Update a credential connection\n\nUpdates settings of an existing credential connection.\n\n`PATCH /credential_connections/{id}`\n\nOptional: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `password` (string), `rtcp_settings` (object), `sip_uri_calling_preference` (enum: disabled, unrestricted, internal), `tags` (array[string]), `user_name` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n```java\nimport com.telnyx.sdk.models.credentialconnections.CredentialConnectionUpdateParams;\nimport com.telnyx.sdk.models.credentialconnections.CredentialConnectionUpdateResponse;\n\nCredentialConnectionUpdateResponse credentialConnection = client.credentialConnections().update(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `password` (string), `record_type` (string), `rtcp_settings` (object), `sip_uri_calling_preference` (enum: disabled, unrestricted, internal), `tags` (array[string]), `updated_at` (string), `user_name` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Delete a credential connection\n\nDeletes an existing credential connection.\n\n`DELETE /credential_connections/{id}`\n\n```java\nimport com.telnyx.sdk.models.credentialconnections.CredentialConnectionDeleteParams;\nimport com.telnyx.sdk.models.credentialconnections.CredentialConnectionDeleteResponse;\n\nCredentialConnectionDeleteResponse credentialConnection = client.credentialConnections().delete(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `password` (string), `record_type` (string), `rtcp_settings` (object), `sip_uri_calling_preference` (enum: disabled, unrestricted, internal), `tags` (array[string]), `updated_at` (string), `user_name` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Check a Credential Connection Registration Status\n\nChecks the registration_status for a credential connection, (`registration_status`) as well as the timestamp for the last SIP registration event (`registration_status_updated_at`)\n\n`POST /credential_connections/{id}/actions/check_registration_status`\n\n```java\nimport com.telnyx.sdk.models.credentialconnections.actions.ActionCheckRegistrationStatusParams;\nimport com.telnyx.sdk.models.credentialconnections.actions.ActionCheckRegistrationStatusResponse;\n\nActionCheckRegistrationStatusResponse response = client.credentialConnections().actions().checkRegistrationStatus(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `ip_address` (string), `last_registration` (string), `port` (integer), `record_type` (string), `sip_username` (string), `status` (enum: Not Applicable, Not Registered, Failed, Expired, Registered, Unregistered), `transport` (string), `user_agent` (string)\n\n## List FQDN connections\n\nReturns a list of your FQDN connections.\n\n`GET /fqdn_connections`\n\n```java\nimport com.telnyx.sdk.models.fqdnconnections.FqdnConnectionListPage;\nimport com.telnyx.sdk.models.fqdnconnections.FqdnConnectionListParams;\n\nFqdnConnectionListPage page = client.fqdnConnections().list();\n```\n\nReturns: `active` (boolean), `adjust_dtmf_timestamp` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_enabled` (boolean), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `ignore_dtmf_duration` (boolean), `ignore_mark_bit` (boolean), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `microsoft_teams_sbc` (boolean), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `password` (string), `record_type` (string), `rtcp_settings` (object), `rtp_pass_codecs_on_stream_change` (boolean), `send_normalized_timestamps` (boolean), `tags` (array[string]), `third_party_control_enabled` (boolean), `transport_protocol` (enum: UDP, TCP, TLS), `txt_name` (string), `txt_ttl` (integer), `txt_value` (string), `updated_at` (string), `user_name` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Create an FQDN connection\n\nCreates a FQDN connection.\n\n`POST /fqdn_connections` — Required: `connection_name`\n\nOptional: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `microsoft_teams_sbc` (boolean), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `rtcp_settings` (object), `tags` (array[string]), `transport_protocol` (enum: UDP, TCP, TLS), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n```java\nimport com.telnyx.sdk.models.fqdnconnections.FqdnConnectionCreateParams;\nimport com.telnyx.sdk.models.fqdnconnections.FqdnConnectionCreateResponse;\n\nFqdnConnectionCreateParams params = FqdnConnectionCreateParams.builder()\n    .connectionName(\"my-sip-connection\")\n    .build();\nFqdnConnectionCreateResponse fqdnConnection = client.fqdnConnections().create(params);\n```\n\nReturns: `active` (boolean), `adjust_dtmf_timestamp` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_enabled` (boolean), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `ignore_dtmf_duration` (boolean), `ignore_mark_bit` (boolean), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `microsoft_teams_sbc` (boolean), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `password` (string), `record_type` (string), `rtcp_settings` (object), `rtp_pass_codecs_on_stream_change` (boolean), `send_normalized_timestamps` (boolean), `tags` (array[string]), `third_party_control_enabled` (boolean), `transport_protocol` (enum: UDP, TCP, TLS), `txt_name` (string), `txt_ttl` (integer), `txt_value` (string), `updated_at` (string), `user_name` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Retrieve an FQDN connection\n\nRetrieves the details of an existing FQDN connection.\n\n`GET /fqdn_connections/{id}`\n\n```java\nimport com.telnyx.sdk.models.fqdnconnections.FqdnConnectionRetrieveParams;\nimport com.telnyx.sdk.models.fqdnconnections.FqdnConnectionRetrieveResponse;\n\nFqdnConnectionRetrieveResponse fqdnConnection = client.fqdnConnections().retrieve(\"1293384261075731499\");\n```\n\nReturns: `active` (boolean), `adjust_dtmf_timestamp` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_enabled` (boolean), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `ignore_dtmf_duration` (boolean), `ignore_mark_bit` (boolean), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `microsoft_teams_sbc` (boolean), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `password` (string), `record_type` (string), `rtcp_settings` (object), `rtp_pass_codecs_on_stream_change` (boolean), `send_normalized_timestamps` (boolean), `tags` (array[string]), `third_party_control_enabled` (boolean), `transport_protocol` (enum: UDP, TCP, TLS), `txt_name` (string), `txt_ttl` (integer), `txt_value` (string), `updated_at` (string), `user_name` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Update an FQDN connection\n\nUpdates settings of an existing FQDN connection.\n\n`PATCH /fqdn_connections/{id}`\n\nOptional: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `rtcp_settings` (object), `tags` (array[string]), `transport_protocol` (enum: UDP, TCP, TLS), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n```java\nimport com.telnyx.sdk.models.fqdnconnections.FqdnConnectionUpdateParams;\nimport com.telnyx.sdk.models.fqdnconnections.FqdnConnectionUpdateResponse;\n\nFqdnConnectionUpdateResponse fqdnConnection = client.fqdnConnections().update(\"1293384261075731499\");\n```\n\nReturns: `active` (boolean), `adjust_dtmf_timestamp` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_enabled` (boolean), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `ignore_dtmf_duration` (boolean), `ignore_mark_bit` (boolean), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `microsoft_teams_sbc` (boolean), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `password` (string), `record_type` (string), `rtcp_settings` (object), `rtp_pass_codecs_on_stream_change` (boolean), `send_normalized_timestamps` (boolean), `tags` (array[string]), `third_party_control_enabled` (boolean), `transport_protocol` (enum: UDP, TCP, TLS), `txt_name` (string), `txt_ttl` (integer), `txt_value` (string), `updated_at` (string), `user_name` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Delete an FQDN connection\n\nDeletes an FQDN connection.\n\n`DELETE /fqdn_connections/{id}`\n\n```java\nimport com.telnyx.sdk.models.fqdnconnections.FqdnConnectionDeleteParams;\nimport com.telnyx.sdk.models.fqdnconnections.FqdnConnectionDeleteResponse;\n\nFqdnConnectionDeleteResponse fqdnConnection = client.fqdnConnections().delete(\"1293384261075731499\");\n```\n\nReturns: `active` (boolean), `adjust_dtmf_timestamp` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_enabled` (boolean), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `ignore_dtmf_duration` (boolean), `ignore_mark_bit` (boolean), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `microsoft_teams_sbc` (boolean), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `password` (string), `record_type` (string), `rtcp_settings` (object), `rtp_pass_codecs_on_stream_change` (boolean), `send_normalized_timestamps` (boolean), `tags` (array[string]), `third_party_control_enabled` (boolean), `transport_protocol` (enum: UDP, TCP, TLS), `txt_name` (string), `txt_ttl` (integer), `txt_value` (string), `updated_at` (string), `user_name` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## List FQDNs\n\nGet all FQDNs belonging to the user that match the given filters.\n\n`GET /fqdns`\n\n```java\nimport com.telnyx.sdk.models.fqdns.FqdnListPage;\nimport com.telnyx.sdk.models.fqdns.FqdnListParams;\n\nFqdnListPage page = client.fqdns().list();\n```\n\nReturns: `connection_id` (string), `created_at` (string), `dns_record_type` (string), `fqdn` (string), `id` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Create an FQDN\n\nCreate a new FQDN object.\n\n`POST /fqdns` — Required: `fqdn`, `dns_record_type`, `connection_id`\n\nOptional: `port` (integer | null)\n\n```java\nimport com.telnyx.sdk.models.fqdns.FqdnCreateParams;\nimport com.telnyx.sdk.models.fqdns.FqdnCreateResponse;\n\nFqdnCreateParams params = FqdnCreateParams.builder()\n    .connectionId(\"1516447646313612565\")\n    .dnsRecordType(\"a\")\n    .fqdn(\"example.com\")\n    .build();\nFqdnCreateResponse fqdn = client.fqdns().create(params);\n```\n\nReturns: `connection_id` (string), `created_at` (string), `dns_record_type` (string), `fqdn` (string), `id` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Retrieve an FQDN\n\nReturn the details regarding a specific FQDN.\n\n`GET /fqdns/{id}`\n\n```java\nimport com.telnyx.sdk.models.fqdns.FqdnRetrieveParams;\nimport com.telnyx.sdk.models.fqdns.FqdnRetrieveResponse;\n\nFqdnRetrieveResponse fqdn = client.fqdns().retrieve(\"1517907029795014409\");\n```\n\nReturns: `connection_id` (string), `created_at` (string), `dns_record_type` (string), `fqdn` (string), `id` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Update an FQDN\n\nUpdate the details of a specific FQDN.\n\n`PATCH /fqdns/{id}`\n\nOptional: `connection_id` (string), `dns_record_type` (string), `fqdn` (string), `port` (integer | null)\n\n```java\nimport com.telnyx.sdk.models.fqdns.FqdnUpdateParams;\nimport com.telnyx.sdk.models.fqdns.FqdnUpdateResponse;\n\nFqdnUpdateResponse fqdn = client.fqdns().update(\"1517907029795014409\");\n```\n\nReturns: `connection_id` (string), `created_at` (string), `dns_record_type` (string), `fqdn` (string), `id` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Delete an FQDN\n\nDelete an FQDN.\n\n`DELETE /fqdns/{id}`\n\n```java\nimport com.telnyx.sdk.models.fqdns.FqdnDeleteParams;\nimport com.telnyx.sdk.models.fqdns.FqdnDeleteResponse;\n\nFqdnDeleteResponse fqdn = client.fqdns().delete(\"1517907029795014409\");\n```\n\nReturns: `connection_id` (string), `created_at` (string), `dns_record_type` (string), `fqdn` (string), `id` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## List Ip connections\n\nReturns a list of your IP connections.\n\n`GET /ip_connections`\n\n```java\nimport com.telnyx.sdk.models.ipconnections.IpConnectionListPage;\nimport com.telnyx.sdk.models.ipconnections.IpConnectionListParams;\n\nIpConnectionListPage page = client.ipConnections().list();\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `record_type` (string), `rtcp_settings` (object), `tags` (array[string]), `transport_protocol` (enum: UDP, TCP, TLS), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Create an Ip connection\n\nCreates an IP connection.\n\n`POST /ip_connections`\n\nOptional: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `rtcp_settings` (object), `tags` (array[string]), `transport_protocol` (enum: UDP, TCP, TLS), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n```java\nimport com.telnyx.sdk.models.ipconnections.IpConnectionCreateParams;\nimport com.telnyx.sdk.models.ipconnections.IpConnectionCreateResponse;\n\nIpConnectionCreateParams params = IpConnectionCreateParams.builder()\n\n    .connectionName(\"my-ip-connection\")\n\n    .build();\n\nIpConnectionCreateResponse ipConnection = client.ipConnections().create(params);\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `record_type` (string), `rtcp_settings` (object), `tags` (array[string]), `transport_protocol` (enum: UDP, TCP, TLS), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Retrieve an Ip connection\n\nRetrieves the details of an existing ip connection.\n\n`GET /ip_connections/{id}`\n\n```java\nimport com.telnyx.sdk.models.ipconnections.IpConnectionRetrieveParams;\nimport com.telnyx.sdk.models.ipconnections.IpConnectionRetrieveResponse;\n\nIpConnectionRetrieveResponse ipConnection = client.ipConnections().retrieve(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `record_type` (string), `rtcp_settings` (object), `tags` (array[string]), `transport_protocol` (enum: UDP, TCP, TLS), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Update an Ip connection\n\nUpdates settings of an existing IP connection.\n\n`PATCH /ip_connections/{id}`\n\nOptional: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `rtcp_settings` (object), `tags` (array[string]), `transport_protocol` (enum: UDP, TCP, TLS), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n```java\nimport com.telnyx.sdk.models.ipconnections.IpConnectionUpdateParams;\nimport com.telnyx.sdk.models.ipconnections.IpConnectionUpdateResponse;\n\nIpConnectionUpdateResponse ipConnection = client.ipConnections().update(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `record_type` (string), `rtcp_settings` (object), `tags` (array[string]), `transport_protocol` (enum: UDP, TCP, TLS), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Delete an Ip connection\n\nDeletes an existing IP connection.\n\n`DELETE /ip_connections/{id}`\n\n```java\nimport com.telnyx.sdk.models.ipconnections.IpConnectionDeleteParams;\nimport com.telnyx.sdk.models.ipconnections.IpConnectionDeleteResponse;\n\nIpConnectionDeleteResponse ipConnection = client.ipConnections().delete(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `android_push_credential_id` (string | null), `call_cost_in_webhooks` (boolean), `connection_name` (string), `created_at` (string), `default_on_hold_comfort_noise_enabled` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `encode_contact_header_enabled` (boolean), `encrypted_media` (enum: SRTP, None), `id` (string), `inbound` (object), `ios_push_credential_id` (string | null), `jitter_buffer` (object), `noise_suppression` (enum: inbound, outbound, both, disabled), `noise_suppression_details` (object), `onnet_t38_passthrough_enabled` (boolean), `outbound` (object), `record_type` (string), `rtcp_settings` (object), `tags` (array[string]), `transport_protocol` (enum: UDP, TCP, TLS), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## List Ips\n\nGet all IPs belonging to the user that match the given filters.\n\n`GET /ips`\n\n```java\nimport com.telnyx.sdk.models.ips.IpListPage;\nimport com.telnyx.sdk.models.ips.IpListParams;\n\nIpListPage page = client.ips().list();\n```\n\nReturns: `connection_id` (string), `created_at` (string), `id` (string), `ip_address` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Create an Ip\n\nCreate a new IP object.\n\n`POST /ips` — Required: `ip_address`\n\nOptional: `connection_id` (string), `port` (integer)\n\n```java\nimport com.telnyx.sdk.models.ips.IpCreateParams;\nimport com.telnyx.sdk.models.ips.IpCreateResponse;\n\nIpCreateParams params = IpCreateParams.builder()\n    .ipAddress(\"192.168.0.0\")\n    .build();\nIpCreateResponse ip = client.ips().create(params);\n```\n\nReturns: `connection_id` (string), `created_at` (string), `id` (string), `ip_address` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Retrieve an Ip\n\nReturn the details regarding a specific IP.\n\n`GET /ips/{id}`\n\n```java\nimport com.telnyx.sdk.models.ips.IpRetrieveParams;\nimport com.telnyx.sdk.models.ips.IpRetrieveResponse;\n\nIpRetrieveResponse ip = client.ips().retrieve(\"6a09cdc3-8948-47f0-aa62-74ac943d6c58\");\n```\n\nReturns: `connection_id` (string), `created_at` (string), `id` (string), `ip_address` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Update an Ip\n\nUpdate the details of a specific IP.\n\n`PATCH /ips/{id}` — Required: `ip_address`\n\nOptional: `connection_id` (string), `port` (integer)\n\n```java\nimport com.telnyx.sdk.models.ips.IpUpdateParams;\nimport com.telnyx.sdk.models.ips.IpUpdateResponse;\n\nIpUpdateParams params = IpUpdateParams.builder()\n    .id(\"6a09cdc3-8948-47f0-aa62-74ac943d6c58\")\n    .ipAddress(\"192.168.0.0\")\n    .build();\nIpUpdateResponse ip = client.ips().update(params);\n```\n\nReturns: `connection_id` (string), `created_at` (string), `id` (string), `ip_address` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Delete an Ip\n\nDelete an IP.\n\n`DELETE /ips/{id}`\n\n```java\nimport com.telnyx.sdk.models.ips.IpDeleteParams;\nimport com.telnyx.sdk.models.ips.IpDeleteResponse;\n\nIpDeleteResponse ip = client.ips().delete(\"6a09cdc3-8948-47f0-aa62-74ac943d6c58\");\n```\n\nReturns: `connection_id` (string), `created_at` (string), `id` (string), `ip_address` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Get all outbound voice profiles\n\nGet all outbound voice profiles belonging to the user that match the given filters.\n\n`GET /outbound_voice_profiles`\n\n```java\nimport com.telnyx.sdk.models.outboundvoiceprofiles.OutboundVoiceProfileListPage;\nimport com.telnyx.sdk.models.outboundvoiceprofiles.OutboundVoiceProfileListParams;\n\nOutboundVoiceProfileListPage page = client.outboundVoiceProfiles().list();\n```\n\nReturns: `billing_group_id` (uuid), `call_recording` (object), `calling_window` (object), `concurrent_call_limit` (integer | null), `connections_count` (integer), `created_at` (string), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `id` (string), `max_destination_rate` (number), `name` (string), `record_type` (string), `service_plan` (enum: global), `tags` (array[string]), `traffic_type` (enum: conversational), `updated_at` (string), `usage_payment_method` (enum: rate-deck), `whitelisted_destinations` (array[string])\n\n## Create an outbound voice profile\n\nCreate an outbound voice profile.\n\n`POST /outbound_voice_profiles` — Required: `name`\n\nOptional: `billing_group_id` (uuid), `call_recording` (object), `calling_window` (object), `concurrent_call_limit` (integer | null), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `max_destination_rate` (number), `service_plan` (enum: global), `tags` (array[string]), `traffic_type` (enum: conversational), `usage_payment_method` (enum: rate-deck), `whitelisted_destinations` (array[string])\n\n```java\nimport com.telnyx.sdk.models.outboundvoiceprofiles.OutboundVoiceProfileCreateParams;\nimport com.telnyx.sdk.models.outboundvoiceprofiles.OutboundVoiceProfileCreateResponse;\n\nOutboundVoiceProfileCreateParams params = OutboundVoiceProfileCreateParams.builder()\n    .name(\"office\")\n    .build();\nOutboundVoiceProfileCreateResponse outboundVoiceProfile = client.outboundVoiceProfiles().create(params);\n```\n\nReturns: `billing_group_id` (uuid), `call_recording` (object), `calling_window` (object), `concurrent_call_limit` (integer | null), `connections_count` (integer), `created_at` (string), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `id` (string), `max_destination_rate` (number), `name` (string), `record_type` (string), `service_plan` (enum: global), `tags` (array[string]), `traffic_type` (enum: conversational), `updated_at` (string), `usage_payment_method` (enum: rate-deck), `whitelisted_destinations` (array[string])\n\n## Retrieve an outbound voice profile\n\nRetrieves the details of an existing outbound voice profile.\n\n`GET /outbound_voice_profiles/{id}`\n\n```java\nimport com.telnyx.sdk.models.outboundvoiceprofiles.OutboundVoiceProfileRetrieveParams;\nimport com.telnyx.sdk.models.outboundvoiceprofiles.OutboundVoiceProfileRetrieveResponse;\n\nOutboundVoiceProfileRetrieveResponse outboundVoiceProfile = client.outboundVoiceProfiles().retrieve(\"1293384261075731499\");\n```\n\nReturns: `billing_group_id` (uuid), `call_recording` (object), `calling_window` (object), `concurrent_call_limit` (integer | null), `connections_count` (integer), `created_at` (string), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `id` (string), `max_destination_rate` (number), `name` (string), `record_type` (string), `service_plan` (enum: global), `tags` (array[string]), `traffic_type` (enum: conversational), `updated_at` (string), `usage_payment_method` (enum: rate-deck), `whitelisted_destinations` (array[string])\n\n## Updates an existing outbound voice profile.\n\n`PATCH /outbound_voice_profiles/{id}` — Required: `name`\n\nOptional: `billing_group_id` (uuid), `call_recording` (object), `calling_window` (object), `concurrent_call_limit` (integer | null), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `max_destination_rate` (number), `service_plan` (enum: global), `tags` (array[string]), `traffic_type` (enum: conversational), `usage_payment_method` (enum: rate-deck), `whitelisted_destinations` (array[string])\n\n```java\nimport com.telnyx.sdk.models.outboundvoiceprofiles.OutboundVoiceProfileUpdateParams;\nimport com.telnyx.sdk.models.outboundvoiceprofiles.OutboundVoiceProfileUpdateResponse;\n\nOutboundVoiceProfileUpdateParams params = OutboundVoiceProfileUpdateParams.builder()\n    .id(\"1293384261075731499\")\n    .name(\"office\")\n    .build();\nOutboundVoiceProfileUpdateResponse outboundVoiceProfile = client.outboundVoiceProfiles().update(params);\n```\n\nReturns: `billing_group_id` (uuid), `call_recording` (object), `calling_window` (object), `concurrent_call_limit` (integer | null), `connections_count` (integer), `created_at` (string), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `id` (string), `max_destination_rate` (number), `name` (string), `record_type` (string), `service_plan` (enum: global), `tags` (array[string]), `traffic_type` (enum: conversational), `updated_at` (string), `usage_payment_method` (enum: rate-deck), `whitelisted_destinations` (array[string])\n\n## Delete an outbound voice profile\n\nDeletes an existing outbound voice profile.\n\n`DELETE /outbound_voice_profiles/{id}`\n\n```java\nimport com.telnyx.sdk.models.outboundvoiceprofiles.OutboundVoiceProfileDeleteParams;\nimport com.telnyx.sdk.models.outboundvoiceprofiles.OutboundVoiceProfileDeleteResponse;\n\nOutboundVoiceProfileDeleteResponse outboundVoiceProfile = client.outboundVoiceProfiles().delete(\"1293384261075731499\");\n```\n\nReturns: `billing_group_id` (uuid), `call_recording` (object), `calling_window` (object), `concurrent_call_limit` (integer | null), `connections_count` (integer), `created_at` (string), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `id` (string), `max_destination_rate` (number), `name` (string), `record_type` (string), `service_plan` (enum: global), `tags` (array[string]), `traffic_type` (enum: conversational), `updated_at` (string), `usage_payment_method` (enum: rate-deck), `whitelisted_destinations` (array[string])","tags":["telnyx","sip","java","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk"],"capabilities":["skill","source-team-telnyx","skill-telnyx-sip-java","topic-agent-skills","topic-ai-coding-agent","topic-claude-code","topic-cpaas","topic-cursor","topic-iot","topic-llm","topic-sdk","topic-sip","topic-sms","topic-speech-to-text","topic-telephony"],"categories":["ai"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/team-telnyx/ai/telnyx-sip-java","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add team-telnyx/ai","source_repo":"https://github.com/team-telnyx/ai","install_from":"skills.sh"}},"qualityScore":"0.533","qualityRationale":"deterministic score 0.53 from registry signals: · indexed on github topic:agent-skills · 167 github stars · SKILL.md body (47,730 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T06:54:48.394Z","embedding":null,"createdAt":"2026-04-18T22:07:49.010Z","updatedAt":"2026-04-22T06:54:48.394Z","lastSeenAt":"2026-04-22T06:54:48.394Z","tsv":"'-47':4466,4524,4577 '-8948':4465,4523,4576 '/24':221 '/access_ip_ranges':163,204,258 '/actions/check_registration_status':1652 '/connections':315,415 '/credential_connections':506,669,980,1153,1457,1650 '/fqdn_connections':1710,1916,2266,2477,2811 '/fqdns':3025,3067,3133,3179,3234 '/ip_connections':3280,3436,3732,3898,4188 '/ips':4357,4396,4453,4502,4564 '/outbound_voice_profiles':4622,4712,4868,4956,5112 '1':377,484,644,785,951,1125,1272,1431,1602,1891,2031,2237,2449,2589,2786,2994,3411,3547,3703,3870,4010,4162,4326 '1000':105 '1293384261075731499':2277,2614,2822,4879,5022,5123 '1516447646313612565':3088 '1517907029795014409':3144,3203,3245 '192.168.0.0':4415,4530 '2':378,485,645,786,952,1126,1273,1432,1603,1892,2032,2238,2450,2590,2787,2995,3412,3548,3704,3871,4011,4163,4327 '203.0.113.0':220 '2833':570,724,877,1051,1206,1357,1528,1782,1968,2128,2340,2530,2677,2885,3344,3488,3636,3803,3951,4095,4259 '401':57,109 '403':113 '404':116 '41d4':275,429,994,1300,1471,1666,3746,4038,4202 '422':53,83,120 '429':50,95,126 '446655440000':277,431,996,1302,1473,1668,3748,4040,4204 '550e8400':272,426,991,1297,1468,1663,3743,4035,4199 '6.36.0':12,17 '6a09cdc3':4464,4522,4575 '74ac943d6c58':4470,4528,4581 'a716':276,430,995,1301,1472,1667,3747,4039,4203 'aa62':4469,4527,4580 'access':159,200,254,259 'accessiprang':223,224,268,269 'accessiprangecreateparam':216 'accessiprangecreateparams.builder':218 'accessiprangelistpag':169 'action':1661 'actioncheckregistrationstatusrespons':1658 'activ':326,433,517,677,824,998,1156,1304,1475,1721,1921,2067,2279,2480,2616,2824,3291,3438,3583,3750,3901,4042,4206 'ad':189,244,294 'address':1671,4377,4399,4432,4481,4506,4547,4592 'adjust':1723,2069,2281,2618,2826 'agent':1697 'alreadi':33 'alway':58 'amsterdam':341,448,532,692,839,1013,1171,1319,1490,1740,1936,2086,2298,2495,2635,2843,3306,3453,3598,3765,3916,4057,4221 'anchorsit':328,435,519,679,826,1000,1158,1306,1477,1727,1923,2073,2285,2482,2622,2830,3293,3440,3585,3752,3903,4044,4208 'android':542,702,849,1023,1181,1329,1500,1750,1946,2096,2308,2505,2645,2853,3316,3463,3608,3775,3926,4067,4231 'api':41,77,111,374,481,641,782,948,1122,1269,1428,1599,1888,2028,2234,2446,2586,2783,2991,3408,3544,3700,3867,4007,4159,4323 'applic':1687 'array':368,475,632,779,939,1113,1263,1419,1590,1859,2019,2205,2417,2577,2754,2962,3396,3535,3688,3855,3998,4147,4311,4681,4699,4751,4766,4833,4851,4929,4947,4996,5011,5080,5098,5173,5191 'ashburn':334,441,525,685,832,1006,1164,1312,1483,1733,1929,2079,2291,2488,2628,2836,3299,3446,3591,3758,3909,4050,4214 'assum':30 'australia':340,447,531,691,838,1012,1170,1318,1489,1739,1935,2085,2297,2494,2634,2842,3305,3452,3597,3764,3915,4056,4220 'authent':55,404 'automat':144 'autopag':142 'backoff':103,132 'belong':3015,4347,4612 'bill':4633,4716,4785,4881,4961,5032,5125 'bit':1804,2150,2362,2699,2907 'block':175,207,230,280 'boolean':327,434,518,552,565,578,612,678,712,719,732,764,825,859,872,885,919,999,1033,1046,1059,1093,1157,1191,1201,1214,1246,1305,1339,1352,1365,1399,1476,1510,1523,1536,1570,1722,1726,1759,1764,1777,1790,1801,1805,1820,1836,1853,1857,1865,1922,1956,1963,1976,1996,2012,2068,2072,2105,2110,2123,2136,2147,2151,2166,2182,2199,2203,2211,2280,2284,2317,2322,2335,2348,2359,2363,2378,2394,2411,2415,2423,2481,2515,2525,2538,2570,2617,2621,2654,2659,2672,2685,2696,2700,2715,2731,2748,2752,2760,2825,2829,2862,2867,2880,2893,2904,2908,2923,2939,2956,2960,2968,3292,3326,3339,3352,3386,3439,3473,3483,3496,3528,3584,3618,3631,3644,3678,3751,3785,3798,3811,3845,3902,3936,3946,3959,3991,4043,4077,4090,4103,4137,4207,4241,4254,4267,4301,4662,4664,4739,4741,4814,4816,4910,4912,4984,4986,5061,5063,5154,5156 'buffer':595,747,902,1076,1229,1382,1553,1815,1991,2161,2373,2553,2710,2918,3369,3511,3661,3828,3974,4120,4284 'build':222,817,2060,3093,3576,4416,4531,4778,5025 'ca':338,445,529,689,836,1010,1168,1316,1487,1737,1933,2083,2295,2492,2632,2840,3303,3450,3595,3762,3913,4054,4218 'call':42,548,625,708,772,855,932,1029,1106,1187,1256,1335,1412,1506,1583,1756,1760,1952,2102,2106,2314,2318,2511,2651,2655,2859,2863,3322,3469,3614,3781,3932,4073,4237,4637,4640,4644,4720,4723,4727,4789,4792,4796,4885,4888,4892,4965,4968,4972,5036,5039,5043,5129,5132,5136 'canada':346,348,453,455,537,539,697,699,844,846,1018,1020,1176,1178,1324,1326,1495,1497,1745,1747,1941,1943,2091,2093,2303,2305,2500,2502,2640,2642,2848,2850,3311,3313,3458,3460,3603,3605,3770,3772,3921,3923,4062,4064,4226,4228 'catch':73 'chang':1852,2198,2410,2747,2955 'check':87,123,1618,1624 'checkregistrationstatus':1662 'chicago':332,439,523,683,830,1004,1162,1310,1481,1731,1927,2077,2289,2486,2626,2834,3297,3444,3589,3756,3907,4048,4212 'cidr':174,206,229,279 'cidrblock':219 'client':25,31 'client.accessipranges':171,225,270 'client.connections':323,424 'client.credentialconnections':514,820,989,1295,1466,1660 'client.fqdnconnections':1718,2063,2275,2612,2820 'client.fqdns':3033,3096,3142,3201,3243 'client.ipconnections':3288,3579,3741,4033,4197 'client.ips':4365,4419,4462,4534,4573 'client.messages':70 'client.outboundvoiceprofiles':4630,4781,4877,5028,5121 'code':63,108 'codec':1849,2195,2407,2744,2952 'com.telnyx.sdk':10,15 'com.telnyx.sdk.client.okhttp.telnyxokhttpclient':23 'com.telnyx.sdk.client.telnyxclient':21 'com.telnyx.sdk.errors.telnyxserviceexception':66 'com.telnyx.sdk.models.accessipranges.accessiprange':213,265 'com.telnyx.sdk.models.accessipranges.accessiprangecreateparams':215 'com.telnyx.sdk.models.accessipranges.accessiprangedeleteparams':267 'com.telnyx.sdk.models.accessipranges.accessiprangelistpage':166 'com.telnyx.sdk.models.accessipranges.accessiprangelistparams':168 'com.telnyx.sdk.models.connections.connectionlistpage':318 'com.telnyx.sdk.models.connections.connectionlistparams':320 'com.telnyx.sdk.models.connections.connectionretrieveparams':419 'com.telnyx.sdk.models.connections.connectionretrieveresponse':421 'com.telnyx.sdk.models.credentialconnections.actions.actioncheckregistrationstatusparams':1655 'com.telnyx.sdk.models.credentialconnections.actions.actioncheckregistrationstatusresponse':1657 'com.telnyx.sdk.models.credentialconnections.credentialconnectioncreateparams':804 'com.telnyx.sdk.models.credentialconnections.credentialconnectioncreateresponse':806 'com.telnyx.sdk.models.credentialconnections.credentialconnectiondeleteparams':1461 'com.telnyx.sdk.models.credentialconnections.credentialconnectiondeleteresponse':1463 'com.telnyx.sdk.models.credentialconnections.credentialconnectionlistpage':509 'com.telnyx.sdk.models.credentialconnections.credentialconnectionlistparams':511 'com.telnyx.sdk.models.credentialconnections.credentialconnectionretrieveparams':984 'com.telnyx.sdk.models.credentialconnections.credentialconnectionretrieveresponse':986 'com.telnyx.sdk.models.credentialconnections.credentialconnectionupdateparams':1290 'com.telnyx.sdk.models.credentialconnections.credentialconnectionupdateresponse':1292 'com.telnyx.sdk.models.fqdnconnections.fqdnconnectioncreateparams':2049 'com.telnyx.sdk.models.fqdnconnections.fqdnconnectioncreateresponse':2051 'com.telnyx.sdk.models.fqdnconnections.fqdnconnectiondeleteparams':2815 'com.telnyx.sdk.models.fqdnconnections.fqdnconnectiondeleteresponse':2817 'com.telnyx.sdk.models.fqdnconnections.fqdnconnectionlistpage':1713 'com.telnyx.sdk.models.fqdnconnections.fqdnconnectionlistparams':1715 'com.telnyx.sdk.models.fqdnconnections.fqdnconnectionretrieveparams':2270 'com.telnyx.sdk.models.fqdnconnections.fqdnconnectionretrieveresponse':2272 'com.telnyx.sdk.models.fqdnconnections.fqdnconnectionupdateparams':2607 'com.telnyx.sdk.models.fqdnconnections.fqdnconnectionupdateresponse':2609 'com.telnyx.sdk.models.fqdns.fqdncreateparams':3081 'com.telnyx.sdk.models.fqdns.fqdncreateresponse':3083 'com.telnyx.sdk.models.fqdns.fqdndeleteparams':3238 'com.telnyx.sdk.models.fqdns.fqdndeleteresponse':3240 'com.telnyx.sdk.models.fqdns.fqdnlistpage':3028 'com.telnyx.sdk.models.fqdns.fqdnlistparams':3030 'com.telnyx.sdk.models.fqdns.fqdnretrieveparams':3137 'com.telnyx.sdk.models.fqdns.fqdnretrieveresponse':3139 'com.telnyx.sdk.models.fqdns.fqdnupdateparams':3196 'com.telnyx.sdk.models.fqdns.fqdnupdateresponse':3198 'com.telnyx.sdk.models.ipconnections.ipconnectioncreateparams':3565 'com.telnyx.sdk.models.ipconnections.ipconnectioncreateresponse':3567 'com.telnyx.sdk.models.ipconnections.ipconnectiondeleteparams':4192 'com.telnyx.sdk.models.ipconnections.ipconnectiondeleteresponse':4194 'com.telnyx.sdk.models.ipconnections.ipconnectionlistpage':3283 'com.telnyx.sdk.models.ipconnections.ipconnectionlistparams':3285 'com.telnyx.sdk.models.ipconnections.ipconnectionretrieveparams':3736 'com.telnyx.sdk.models.ipconnections.ipconnectionretrieveresponse':3738 'com.telnyx.sdk.models.ipconnections.ipconnectionupdateparams':4028 'com.telnyx.sdk.models.ipconnections.ipconnectionupdateresponse':4030 'com.telnyx.sdk.models.ips.ipcreateparams':4408 'com.telnyx.sdk.models.ips.ipcreateresponse':4410 'com.telnyx.sdk.models.ips.ipdeleteparams':4568 'com.telnyx.sdk.models.ips.ipdeleteresponse':4570 'com.telnyx.sdk.models.ips.iplistpage':4360 'com.telnyx.sdk.models.ips.iplistparams':4362 'com.telnyx.sdk.models.ips.ipretrieveparams':4457 'com.telnyx.sdk.models.ips.ipretrieveresponse':4459 'com.telnyx.sdk.models.ips.ipupdateparams':4515 'com.telnyx.sdk.models.ips.ipupdateresponse':4517 'com.telnyx.sdk.models.outboundvoiceprofiles.outboundvoiceprofilecreateparams':4770 'com.telnyx.sdk.models.outboundvoiceprofiles.outboundvoiceprofilecreateresponse':4772 'com.telnyx.sdk.models.outboundvoiceprofiles.outboundvoiceprofiledeleteparams':5116 'com.telnyx.sdk.models.outboundvoiceprofiles.outboundvoiceprofiledeleteresponse':5118 'com.telnyx.sdk.models.outboundvoiceprofiles.outboundvoiceprofilelistpage':4625 'com.telnyx.sdk.models.outboundvoiceprofiles.outboundvoiceprofilelistparams':4627 'com.telnyx.sdk.models.outboundvoiceprofiles.outboundvoiceprofileretrieveparams':4872 'com.telnyx.sdk.models.outboundvoiceprofiles.outboundvoiceprofileretrieveresponse':4874 'com.telnyx.sdk.models.outboundvoiceprofiles.outboundvoiceprofileupdateparams':5015 'com.telnyx.sdk.models.outboundvoiceprofiles.outboundvoiceprofileupdateresponse':5017 'comfort':562,716,869,1043,1198,1349,1520,1774,1960,2120,2332,2522,2669,2877,3336,3480,3628,3795,3943,4087,4251 'common':106 'concurr':4643,4726,4795,4891,4971,5042,5135 'connect':304,310,351,390,400,412,423,458,497,504,553,663,667,674,860,970,978,1034,1144,1151,1192,1340,1450,1455,1511,1621,1631,1701,1708,1765,1910,1914,1918,2059,2111,2256,2264,2323,2468,2475,2516,2660,2805,2809,2868,3036,3073,3100,3146,3182,3205,3247,3271,3278,3327,3430,3434,3474,3575,3619,3722,3730,3786,3889,3896,3937,4078,4181,4186,4242,4368,4401,4423,4472,4508,4538,4583,4648,4800,4896,5047,5140 'connectionid':3087 'connectionlistpag':321 'connectionnam':810,2055,3571 'connectionretrieverespons':422 'contact':575,729,882,1056,1211,1362,1533,1787,1973,2133,2345,2535,2682,2890,3349,3493,3641,3808,3956,4100,4264 'control':152,1863,2209,2421,2758,2966 'convers':4686,4756,4838,4934,5001,5085,5178 'cost':549,709,856,1030,1188,1336,1507,1757,1761,1953,2103,2107,2315,2319,2512,2652,2656,2860,2864,3323,3470,3615,3782,3933,4074,4238 'count':4649,4801,4897,5048,5141 'creat':177,198,226,232,282,354,461,556,660,664,821,863,1037,1343,1514,1768,1907,1911,2064,2114,2326,2663,2871,3039,3058,3061,3097,3103,3149,3208,3250,3330,3427,3431,3580,3622,3789,4081,4245,4371,4387,4390,4420,4426,4475,4541,4586,4651,4701,4706,4782,4803,4899,5050,5143 'credenti':496,503,544,590,662,666,704,742,851,897,969,977,1025,1071,1143,1150,1183,1224,1331,1377,1449,1454,1502,1548,1620,1630,1752,1810,1948,1986,2098,2156,2310,2368,2507,2548,2647,2705,2855,2913,3318,3364,3465,3506,3610,3656,3777,3823,3928,3969,4069,4115,4233,4279 'credentialconnect':819,988,1294,1465 'credentialconnectioncreateparam':807 'credentialconnectioncreateparams.builder':809 'credentialconnectioncreaterespons':818 'credentialconnectiondeleterespons':1464 'credentialconnectionlistpag':512 'credentialconnectionretrieverespons':987 'credentialconnectionupdaterespons':1293 'daili':4654,4658,4731,4735,4806,4810,4902,4906,4976,4980,5053,5057,5146,5150 'date':180,193,235,248,285,298 'date-tim':179,192,234,247,284,297 'deck':4696,4763,4848,4944,5008,5095,5188 'default':559,713,866,1040,1195,1346,1517,1771,1957,2117,2329,2519,2666,2874,3333,3477,3625,3792,3940,4084,4248 'delet':253,257,271,1447,1451,1456,1467,2802,2806,2810,2821,3227,3230,3233,3244,4178,4182,4187,4198,4557,4560,4563,4574,5100,5105,5111,5122 'descript':182,209,237,287 'destin':4668,4698,4743,4765,4820,4850,4916,4946,4988,5010,5067,5097,5160,5190 'detail':396,606,758,913,973,1087,1240,1393,1564,1830,2006,2176,2259,2388,2564,2725,2933,3127,3173,3380,3522,3672,3725,3839,3985,4131,4295,4447,4496,4860 'disabl':603,628,755,775,910,935,1084,1109,1237,1259,1390,1415,1561,1586,1827,2003,2173,2385,2561,2722,2930,3377,3519,3669,3836,3982,4128,4292 'dns':3042,3070,3106,3152,3185,3211,3253 'dnsrecordtyp':3089 'dtmf':566,720,873,1047,1202,1353,1524,1724,1778,1799,1964,2070,2124,2145,2282,2336,2357,2526,2619,2673,2694,2827,2881,2902,3340,3484,3632,3799,3947,4091,4255 'durat':1800,2146,2358,2695,2903 'e':75 'e.getmessage':80 'e.statuscode':79,82,94 'e29b':274,428,993,1299,1470,1665,3745,4037,4201 'e29b-41d4-a716':273,427,992,1298,1469,1664,3744,4036,4200 'els':92 'enabl':564,577,611,718,731,763,871,884,918,1045,1058,1092,1200,1213,1245,1351,1364,1398,1522,1535,1569,1758,1776,1789,1835,1864,1962,1975,2011,2104,2122,2135,2181,2210,2316,2334,2347,2393,2422,2524,2537,2569,2653,2671,2684,2730,2759,2861,2879,2892,2938,2967,3338,3351,3385,3482,3495,3527,3630,3643,3677,3797,3810,3844,3945,3958,3990,4089,4102,4136,4253,4266,4300,4661,4663,4738,4740,4813,4815,4909,4911,4983,4985,5060,5062,5153,5155 'encod':574,728,881,1055,1210,1361,1532,1786,1972,2132,2344,2534,2681,2889,3348,3492,3640,3807,3955,4099,4263 'encrypt':579,733,886,1060,1215,1366,1537,1791,1977,2137,2349,2539,2686,2894,3353,3497,3645,3812,3960,4104,4268 'endpoint':408 'enum':187,242,292,330,376,437,483,521,568,581,599,627,643,681,722,735,751,774,784,828,875,888,906,934,950,1002,1049,1062,1080,1108,1124,1160,1204,1217,1233,1258,1271,1308,1355,1368,1386,1414,1430,1479,1526,1539,1557,1585,1601,1685,1729,1780,1793,1823,1868,1890,1925,1966,1979,1999,2023,2030,2075,2126,2139,2169,2214,2236,2287,2338,2351,2381,2426,2448,2484,2528,2541,2557,2581,2588,2624,2675,2688,2718,2763,2785,2832,2883,2896,2926,2971,2993,3295,3342,3355,3373,3400,3410,3442,3486,3499,3515,3539,3546,3587,3634,3647,3665,3692,3702,3754,3801,3814,3832,3859,3869,3905,3949,3962,3978,4002,4009,4046,4093,4106,4124,4151,4161,4210,4257,4270,4288,4315,4325,4678,4685,4693,4748,4755,4760,4830,4837,4845,4926,4933,4941,4993,5000,5005,5077,5084,5092,5170,5177,5185 'error':38,47,52,56,60,78,86,107,122 'event':380,385,487,492,647,652,789,794,954,959,1128,1133,1275,1280,1434,1439,1605,1610,1644,1894,1899,2034,2039,2240,2245,2452,2457,2592,2597,2789,2794,2997,3002,3414,3419,3550,3555,3706,3711,3873,3878,4013,4018,4165,4170,4329,4334 'exampl':28 'example.com':3092 'exist':399,976,1149,1453,2262,2473,3728,3894,4184,4863,4951,5107 'expir':1691 'exponenti':102,131 'f0':4468,4526,4579 'f0-aa62-74ac943d6c58':4467,4525,4578 'fail':44,1690 'failov':381,488,648,790,955,1129,1276,1435,1606,1895,2035,2241,2453,2593,2790,2998,3415,3551,3707,3874,4014,4166,4330 'field':89,124 'filter':3023,4355,4620 'format':91,125 'found':119 'fqdn':1700,1707,1909,1913,2255,2263,2467,2474,2804,2808,3046,3060,3064,3069,3091,3095,3110,3124,3131,3141,3156,3170,3177,3189,3200,3215,3229,3232,3242,3257 'fqdnconnect':2062,2274,2611,2819 'fqdnconnectioncreateparam':2052 'fqdnconnectioncreateparams.builder':2054 'fqdnconnectioncreaterespons':2061 'fqdnconnectiondeleterespons':2818 'fqdnconnectionlistpag':1716 'fqdnconnectionretrieverespons':2273 'fqdnconnectionupdaterespons':2610 'fqdncreateparam':3084 'fqdncreateparams.builder':3086 'fqdncreaterespons':3094 'fqdndeleterespons':3241 'fqdnlistpag':3031 'fqdnretrieverespons':3140 'fqdns':3011,3014 'fqdnupdaterespons':3199 'frankfurt':349,456,540,700,847,1021,1179,1327,1498,1748,1944,2094,2306,2503,2643,2851,3314,3461,3606,3773,3924,4065,4229 'germani':350,457,541,701,848,1022,1180,1328,1499,1749,1945,2095,2307,2504,2644,2852,3315,3462,3607,3774,3925,4066,4230 'get':162,314,414,505,979,1709,2265,3012,3024,3132,3279,3731,4344,4356,4452,4602,4607,4621,4867 'given':3022,4354,4619 'global':4679,4749,4831,4927,4994,5078,5171 'gradl':13 'group':4634,4717,4786,4882,4962,5033,5126 'handl':39,59 'hasnextpag':154 'header':576,730,883,1057,1212,1363,1534,1788,1974,2134,2346,2536,2683,2891,3350,3494,3642,3809,3957,4101,4265 'high':394 'high-level':393 'hold':561,715,868,1042,1197,1348,1519,1773,1959,2119,2331,2521,2668,2876,3335,3479,3627,3794,3942,4086,4250 'id':184,196,239,251,262,289,301,357,362,416,464,469,545,584,591,705,743,852,891,898,981,1026,1065,1072,1154,1184,1225,1332,1371,1378,1458,1503,1542,1549,1651,1753,1796,1811,1949,1987,2099,2142,2157,2267,2311,2354,2369,2478,2508,2549,2648,2691,2706,2812,2856,2899,2914,3037,3048,3074,3101,3112,3134,3147,3158,3180,3183,3206,3217,3235,3248,3259,3319,3358,3365,3466,3507,3611,3650,3657,3733,3778,3817,3824,3899,3929,3970,4070,4109,4116,4189,4234,4273,4280,4369,4374,4402,4424,4429,4454,4473,4478,4503,4509,4521,4539,4544,4565,4584,4589,4635,4665,4718,4787,4817,4869,4883,4913,4957,4963,5021,5034,5064,5113,5127,5157 'ignor':1798,1802,2144,2148,2356,2360,2693,2697,2901,2905 'il':333,440,524,684,831,1005,1163,1311,1482,1732,1928,2078,2290,2487,2627,2835,3298,3445,3590,3757,3908,4049,4213 'implement':14 'import':20,22,65,133,165,167,212,214,264,266,317,319,418,420,508,510,803,805,983,985,1289,1291,1460,1462,1654,1656,1712,1714,2048,2050,2269,2271,2606,2608,2814,2816,3027,3029,3080,3082,3136,3138,3195,3197,3237,3239,3282,3284,3564,3566,3735,3737,4027,4029,4191,4193,4359,4361,4407,4409,4456,4458,4514,4516,4567,4569,4624,4626,4769,4771,4871,4873,5014,5016,5115,5117 'inband':571,725,878,1052,1207,1358,1529,1783,1969,2129,2341,2531,2678,2886,3345,3489,3637,3804,3952,4096,4260 'inbound':586,600,738,752,893,907,1067,1081,1220,1234,1373,1387,1544,1558,1806,1824,1982,2000,2152,2170,2364,2382,2544,2558,2701,2719,2909,2927,3360,3374,3502,3516,3652,3666,3819,3833,3965,3979,4111,4125,4275,4289 'info':573,727,880,1054,1209,1360,1531,1785,1971,2131,2343,2533,2680,2888,3347,3491,3639,3806,3954,4098,4262 'inform':405 'initi':34 'instal':8 'insuffici':114 'integ':658,800,965,1139,1286,1445,1616,1677,1877,1905,2045,2223,2251,2435,2463,2603,2772,2800,2980,3008,3051,3077,3115,3161,3192,3220,3262,3425,3561,3717,3884,4024,4176,4340,4380,4405,4435,4484,4512,4550,4595,4646,4650,4729,4798,4802,4894,4898,4974,5045,5049,5138,5142 'intern':630,777,937,1111,1261,1417,1588 'invalid':110 'io':588,740,895,1069,1222,1375,1546,1808,1984,2154,2366,2546,2703,2911,3362,3504,3654,3821,3967,4113,4277 'ip':160,201,255,260,1670,3270,3277,3429,3433,3574,3721,3729,3888,3895,4180,4185,4343,4346,4376,4389,4393,4398,4418,4431,4444,4451,4461,4480,4493,4500,4505,4533,4546,4559,4562,4572,4591 'ipaddress':4414,4529 'ipconnect':3578,3740,4032,4196 'ipconnectioncreateparam':3568 'ipconnectioncreateparams.builder':3570 'ipconnectioncreaterespons':3577 'ipconnectiondeleterespons':4195 'ipconnectionlistpag':3286 'ipconnectionretrieverespons':3739 'ipconnectionupdaterespons':4031 'ipcreateparam':4411 'ipcreateparams.builder':4413 'ipcreaterespons':4417 'ipdeleterespons':4571 'iplistpag':4363 'ipretrieverespons':4460 'ipupdateparam':4518 'ipupdateparams.builder':4520 'ipupdaterespons':4532 'irrespect':311 'item':148 'iter':145 'java':4,7,19,64,164,211,263,316,417,507,802,982,1288,1459,1653,1711,2047,2268,2605,2813,3026,3079,3135,3194,3236,3281,3563,3734,4026,4190,4358,4406,4455,4513,4566,4623,4768,4870,5013,5114 'jitter':594,746,901,1075,1228,1381,1552,1814,1990,2160,2372,2552,2709,2917,3368,3510,3660,3827,3973,4119,4283 'jose':337,444,528,688,835,1009,1167,1315,1486,1736,1932,2082,2294,2491,2631,2839,3302,3449,3594,3761,3912,4053,4217 'key':112 'last':1641,1673 'latenc':331,438,522,682,829,1003,1161,1309,1480,1730,1926,2076,2288,2485,2625,2833,3296,3443,3588,3755,3906,4047,4211 'level':395 'limit':49,97,128,4645,4656,4660,4728,4733,4737,4797,4808,4812,4893,4904,4908,4973,4978,4982,5044,5055,5059,5137,5148,5152 'list':136,157,172,303,307,324,495,500,515,1699,1704,1719,3010,3034,3269,3274,3289,4342,4366,4631 'london':343,450,534,694,841,1015,1173,1321,1492,1742,1938,2088,2300,2497,2637,2845,3308,3455,3600,3767,3918,4059,4223 'manual':151 'mark':1803,2149,2361,2698,2906 'match':3020,4352,4617 'max':4667,4742,4819,4915,4987,5066,5159 'media':580,734,887,1061,1216,1367,1538,1792,1978,2138,2350,2540,2687,2895,3354,3498,3646,3813,3961,4105,4269 'method':137,4692,4759,4844,4940,5004,5091,5184 'microsoft':1817,1993,2163,2375,2712,2920 'my-ip-connect':3572 'my-sip-connect':2056 'my123secure456password789':814 'myusername123':816 'name':352,459,554,638,672,675,812,861,945,1035,1119,1193,1266,1341,1425,1512,1596,1766,1873,1885,1919,2112,2219,2231,2324,2431,2443,2517,2661,2768,2780,2869,2976,2988,3328,3475,3620,3787,3938,4079,4243,4671,4714,4776,4823,4919,4959,5023,5070,5163 'netherland':342,449,533,693,840,1014,1172,1320,1491,1741,1937,2087,2299,2496,2636,2844,3307,3454,3599,3766,3917,4058,4222 'network':46 'new':199,3063,4392 'nextpag':156 'nois':563,597,604,717,749,756,870,904,911,1044,1078,1085,1199,1231,1238,1350,1384,1391,1521,1555,1562,1775,1821,1828,1961,1997,2004,2121,2167,2174,2333,2379,2386,2523,2555,2562,2670,2716,2723,2878,2924,2931,3337,3371,3378,3481,3513,3520,3629,3663,3670,3796,3830,3837,3944,3976,3983,4088,4122,4129,4252,4286,4293 'none':583,737,890,1064,1219,1370,1541,1795,1981,2141,2353,2543,2690,2898,3357,3501,3649,3816,3964,4108,4272 'normal':1855,2201,2413,2750,2958 'note':134 'null':547,593,659,707,745,801,854,900,966,1028,1074,1140,1186,1227,1287,1334,1380,1446,1505,1551,1617,1755,1813,1906,1951,1989,2046,2101,2159,2252,2313,2371,2464,2510,2551,2604,2650,2708,2801,2858,2916,3009,3078,3193,3321,3367,3426,3468,3509,3562,3613,3659,3718,3780,3826,3885,3931,3972,4025,4072,4118,4177,4236,4282,4341,4647,4730,4799,4895,4975,5046,5139 'number':4670,4745,4822,4918,4990,5069,5162 'object':587,596,607,614,622,739,748,759,766,769,894,903,914,921,929,1068,1077,1088,1095,1103,1221,1230,1241,1248,1253,1374,1383,1394,1401,1409,1545,1554,1565,1572,1580,1807,1816,1831,1838,1846,1983,1992,2007,2014,2017,2153,2162,2177,2184,2192,2365,2374,2389,2396,2404,2545,2554,2565,2572,2575,2702,2711,2726,2733,2741,2910,2919,2934,2941,2949,3065,3361,3370,3381,3388,3394,3503,3512,3523,3530,3533,3653,3662,3673,3680,3686,3820,3829,3840,3847,3853,3966,3975,3986,3993,3996,4112,4121,4132,4139,4145,4276,4285,4296,4303,4309,4394,4639,4642,4722,4725,4791,4794,4887,4890,4967,4970,5038,5041,5131,5134 'offic':4777,5024 'onnet':608,760,915,1089,1242,1395,1566,1832,2008,2178,2390,2566,2727,2935,3382,3524,3674,3841,3987,4133,4297 'option':208,676,1155,1920,2479,3075,3181,3437,3900,4400,4507,4715,4960 'outbound':359,466,601,613,753,765,908,920,1082,1094,1235,1247,1388,1400,1559,1571,1825,1837,2001,2013,2171,2183,2383,2395,2559,2571,2720,2732,2928,2940,3375,3387,3517,3529,3667,3679,3834,3846,3980,3992,4126,4138,4290,4302,4604,4609,4703,4708,4855,4864,4952,5102,5108 'outboundvoiceprofil':4780,4876,5027,5120 'outboundvoiceprofilecreateparam':4773 'outboundvoiceprofilecreateparams.builder':4775 'outboundvoiceprofilecreaterespons':4779 'outboundvoiceprofiledeleterespons':5119 'outboundvoiceprofilelistpag':4628 'outboundvoiceprofileretrieverespons':4875 'outboundvoiceprofileupdateparam':5018 'outboundvoiceprofileupdateparams.builder':5020 'outboundvoiceprofileupdaterespons':5026 'overrid':329,436,520,680,827,1001,1159,1307,1478,1728,1924,2074,2286,2483,2623,2831,3294,3441,3586,3753,3904,4045,4209 'page':140,170,322,513,1717,3032,3287,4364,4629 'page.autopager':149 'pagin':135 'param':72,217,227,808,822,2053,2065,3085,3098,3569,3581,4412,4421,4519,4536,4774,4783,5019,5030 'parti':1862,2208,2420,2757,2965 'pass':1848,2194,2406,2743,2951 'passthrough':610,762,917,1091,1244,1397,1568,1834,2010,2180,2392,2568,2729,2937,3384,3526,3676,3843,3989,4135,4299 'password':615,673,813,922,1096,1249,1402,1573,1839,2185,2397,2734,2942 'patch':1152,2476,3178,3897,4501,4955 'payment':4691,4758,4843,4939,5003,5090,5183 'pend':188,243,293 'permiss':115 'plan':4677,4747,4829,4925,4992,5076,5169 'port':1676,3050,3076,3114,3160,3191,3219,3261,4379,4404,4434,4483,4511,4549,4594 'post':203,668,1649,1915,3066,3435,4395,4711 'prefer':626,773,933,1107,1257,1413,1584 'product':62 'profil':361,468,4606,4611,4705,4710,4857,4866,4954,5104,5110 'protocol':1867,2022,2213,2425,2580,2762,2970,3399,3538,3691,3858,4001,4150,4314 'push':543,589,703,741,850,896,1024,1070,1182,1223,1330,1376,1501,1547,1751,1809,1947,1985,2097,2155,2309,2367,2506,2547,2646,2704,2854,2912,3317,3363,3464,3505,3609,3655,3776,3822,3927,3968,4068,4114,4232,4278 'rang':161,202,256,261 'rate':48,96,127,4669,4695,4744,4762,4821,4847,4917,4943,4989,5007,5068,5094,5161,5187 'rate-deck':4694,4761,4846,4942,5006,5093,5186 'record':364,471,617,924,1098,1404,1575,1678,1841,2187,2399,2736,2944,3043,3052,3071,3107,3116,3153,3162,3186,3212,3221,3254,3263,3389,3681,3848,4140,4304,4381,4436,4485,4551,4596,4638,4673,4721,4790,4825,4886,4921,4966,5037,5072,5130,5165 'regard':3128,4448 'regist':1689,1692 'registr':1622,1626,1632,1643,1645,1674 'requir':88,205,670,1917,3068,4397,4504,4713,4958 'resourc':117 'respons':1659 'result':69 'retri':100,129 'retriev':388,391,402,425,967,971,990,2253,2257,2276,3122,3143,3719,3723,3742,4442,4463,4853,4858,4878 'return':138,173,228,278,305,325,432,498,516,823,997,1303,1474,1669,1702,1720,2066,2278,2615,2823,3035,3099,3125,3145,3204,3246,3272,3290,3582,3749,4041,4205,4367,4422,4445,4471,4537,4582,4632,4784,4880,5031,5124 'rfc':569,723,876,1050,1205,1356,1527,1781,1967,2127,2339,2529,2676,2884,3343,3487,3635,3802,3950,4094,4258 'rtcp':620,767,927,1101,1251,1407,1578,1844,2015,2190,2402,2573,2739,2947,3392,3531,3684,3851,3994,4143,4307 'rtp':1847,2193,2405,2742,2950 'san':336,443,527,687,834,1008,1166,1314,1485,1735,1931,2081,2293,2490,2630,2838,3301,3448,3593,3760,3911,4052,4216 'sbc':1819,1995,2165,2377,2714,2922 'sec':657,799,964,1138,1285,1444,1615,1904,2044,2250,2462,2602,2799,3007,3424,3560,3716,3883,4023,4175,4339 'send':71,1854,2200,2412,2749,2957 'servic':4676,4746,4828,4924,4991,5075,5168 'set':621,768,928,1102,1146,1252,1408,1579,1845,2016,2191,2403,2470,2574,2740,2948,3393,3532,3685,3852,3891,3995,4144,4308 'setup':18 'shown':36 'sip':3,6,572,623,726,770,879,930,1053,1104,1208,1254,1359,1410,1530,1581,1642,1681,1784,1970,2058,2130,2342,2532,2679,2887,3346,3490,3638,3805,3953,4097,4261 'skill' 'skill-telnyx-sip-java' 'source-team-telnyx' 'specif':403,411,3130,3176,4450,4499 'spend':4655,4659,4732,4736,4807,4811,4903,4907,4977,4981,5054,5058,5147,5151 'srtp':582,736,889,1063,1218,1369,1540,1794,1980,2140,2352,2542,2689,2897,3356,3500,3648,3815,3963,4107,4271 'status':186,241,291,1623,1627,1633,1646,1684 'stream':1851,2197,2409,2746,2954 'string':176,183,185,197,210,231,238,240,252,281,288,290,302,353,356,358,363,366,369,372,460,463,465,470,473,476,479,546,555,558,585,592,616,619,633,636,639,706,744,780,853,862,865,892,899,923,926,940,943,946,1027,1036,1039,1066,1073,1097,1100,1114,1117,1120,1185,1194,1226,1250,1264,1267,1333,1342,1345,1372,1379,1403,1406,1420,1423,1426,1504,1513,1516,1543,1550,1574,1577,1591,1594,1597,1672,1675,1680,1683,1695,1698,1754,1767,1770,1797,1812,1840,1843,1860,1874,1880,1883,1886,1950,1988,2020,2100,2113,2116,2143,2158,2186,2189,2206,2220,2226,2229,2232,2312,2325,2328,2355,2370,2398,2401,2418,2432,2438,2441,2444,2509,2518,2550,2578,2649,2662,2665,2692,2707,2735,2738,2755,2769,2775,2778,2781,2857,2870,2873,2900,2915,2943,2946,2963,2977,2983,2986,2989,3038,3041,3045,3047,3049,3054,3057,3102,3105,3109,3111,3113,3118,3121,3148,3151,3155,3157,3159,3164,3167,3184,3188,3190,3207,3210,3214,3216,3218,3223,3226,3249,3252,3256,3258,3260,3265,3268,3320,3329,3332,3359,3366,3391,3397,3406,3467,3476,3508,3536,3612,3621,3624,3651,3658,3683,3689,3698,3779,3788,3791,3818,3825,3850,3856,3865,3930,3939,3971,3999,4071,4080,4083,4110,4117,4142,4148,4157,4235,4244,4247,4274,4281,4306,4312,4321,4370,4373,4375,4378,4383,4386,4403,4425,4428,4430 'suppress':598,605,750,757,905,912,1079,1086,1232,1239,1385,1392,1556,1563,1822,1829,1998,2005,2168,2175,2380,2387,2556,2563,2717,2724,2925,2932,3372,3379,3514,3521,3664,3671,3831,3838,3977,3984,4123,4130,4287,4294 'sydney':339,446,530,690,837,1011,1169,1317,1488,1738,1934,2084,2296,2493,2633,2841,3304,3451,3596,3763,3914,4055,4219 'system.err.println':76,84 't38':609,761,916,1090,1243,1396,1567,1833,2009,2179,2391,2567,2728,2936,3383,3525,3675,3842,3988,4134,4298 'tag':367,474,631,778,938,1112,1262,1418,1589,1858,2018,2204,2416,2576,2753,2961,3395,3534,3687,3854,3997,4146,4310,4680,4750,4832,4928,4995,5079,5172 'tcp':1870,2025,2216,2428,2583,2765,2973,3402,3541,3694,3861,4004,4153,4317 'team':1818,1994,2164,2376,2713,2921 'telnyx':2,5,11,16 'telnyx-sip-java':1 'telnyxcli':24 'telnyxokhttpclient.fromenv':26 'telnyxserviceexcept':74 'texml':787 'text':9 'third':1861,2207,2419,2756,2964 'thread.sleep':104 'time':181,194,236,249,286,299 'timeout':656,798,963,1137,1284,1443,1614,1903,2043,2249,2461,2601,2798,3006,3423,3559,3715,3882,4022,4174,4338 'timestamp':1638,1725,1856,2071,2202,2283,2414,2620,2751,2828,2959 'tls':1871,2026,2217,2429,2584,2766,2974,3403,3542,3695,3862,4005,4154,4318 'topic-agent-skills' 'topic-ai-coding-agent' 'topic-claude-code' 'topic-cpaas' 'topic-cursor' 'topic-iot' 'topic-llm' 'topic-sdk' 'topic-sip' 'topic-sms' 'topic-speech-to-text' 'topic-telephony' 'toronto':345,452,536,696,843,1017,1175,1323,1494,1744,1940,2090,2302,2499,2639,2847,3310,3457,3602,3769,3920,4061,4225 'traffic':4683,4753,4835,4931,4998,5082,5175 'transport':1694,1866,2021,2212,2424,2579,2761,2969,3398,3537,3690,3857,4000,4149,4313 'tri':67 'ttl':1876,2222,2434,2771,2979 'txt':1872,1875,1878,2218,2221,2224,2430,2433,2436,2767,2770,2773,2975,2978,2981 'type':313,365,413,472,567,618,721,874,925,1048,1099,1203,1354,1405,1525,1576,1679,1779,1842,1965,2125,2188,2337,2400,2527,2674,2737,2882,2945,3044,3053,3072,3108,3117,3154,3163,3187,3213,3222,3255,3264,3341,3390,3485,3633,3682,3800,3849,3948,4092,4141,4256,4305,4382,4437,4486,4552,4597,4674,4684,4754,4826,4836,4922,4932,4999,5073,5083,5166,5176 'udp':1869,2024,2215,2427,2582,2764,2972,3401,3540,3693,3860,4003,4152,4316 'uk':344,451,535,695,842,1016,1174,1322,1493,1743,1939,2089,2301,2498,2638,2846,3309,3456,3601,3768,3919,4060,4224 'unregist':1693 'unrestrict':629,776,936,1110,1260,1416,1587 'updat':190,245,295,370,477,634,941,1115,1141,1145,1296,1421,1592,1647,1881,2227,2439,2465,2469,2613,2776,2984,3055,3119,3165,3168,3171,3202,3224,3266,3404,3696,3863,3886,3890,4034,4155,4319,4384,4439,4488,4491,4494,4535,4554,4599,4687,4839,4935,4949,5029,5086,5179 'uri':383,387,490,494,624,650,654,771,792,796,931,957,961,1105,1131,1135,1255,1278,1282,1411,1437,1441,1582,1608,1612,1897,1901,2037,2041,2243,2247,2455,2459,2595,2599,2792,2796,3000,3004,3417,3421,3553,3557,3709,3713,3876,3880,4016,4020,4168,4172,4332,4336 'url':382,386,489,493,649,653,791,795,956,960,1130,1134,1277,1281,1436,1440,1607,1611,1896,1900,2036,2040,2242,2246,2454,2458,2594,2598,2791,2795,2999,3003,3416,3420,3552,3556,3708,3712,3875,3879,4015,4019,4167,4171,4331,4335 'usag':4690,4757,4842,4938,5002,5089,5182 'use':141,153,406 'user':195,250,300,637,671,944,1118,1265,1424,1595,1696,1884,2230,2442,2779,2987,3018,4350,4615 'usernam':815,1682 'uuid':4636,4719,4788,4884,4964,5035,5128 'va':335,442,526,686,833,1007,1165,1313,1484,1734,1930,2080,2292,2489,2629,2837,3300,3447,3592,3759,3910,4051,4215 'valid':51,85,121 'valu':1879,2225,2437,2774,2982 'vancouv':347,454,538,698,845,1019,1177,1325,1496,1746,1942,2092,2304,2501,2641,2849,3312,3459,3604,3771,3922,4063,4227 'var':68,147 'version':375,482,642,783,949,1123,1270,1429,1600,1889,2029,2235,2447,2587,2784,2992,3409,3545,3701,3868,4008,4160,4324 'voic':360,467,4605,4610,4704,4709,4856,4865,4953,5103,5109 'wait':98 'webhook':373,379,384,480,486,491,551,640,646,651,655,711,781,788,793,797,858,947,953,958,962,1032,1121,1127,1132,1136,1190,1268,1274,1279,1283,1338,1427,1433,1438,1442,1509,1598,1604,1609,1613,1763,1887,1893,1898,1902,1955,2027,2033,2038,2042,2109,2233,2239,2244,2248,2321,2445,2451,2456,2460,2514,2585,2591,2596,2600,2658,2782,2788,2793,2797,2866,2990,2996,3001,3005,3325,3407,3413,3418,3422,3472,3543,3549,3554,3558,3617,3699,3705,3710,3714,3784,3866,3872,3877,3881,3935,4006,4012,4017,4021,4076,4158,4164,4169,4173,4240,4322,4328,4333,4337 'well':1635 'whitelist':4697,4764,4849,4945,5009,5096,5189 'window':4641,4724,4793,4889,4969,5040,5133","prices":[{"id":"bbd69ed3-e4a2-4bd2-b5e0-1a8d549d7b57","listingId":"9f66e43e-c322-43ac-844f-21871da3026e","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"team-telnyx","category":"ai","install_from":"skills.sh"},"createdAt":"2026-04-18T22:07:49.010Z"}],"sources":[{"listingId":"9f66e43e-c322-43ac-844f-21871da3026e","source":"github","sourceId":"team-telnyx/ai/telnyx-sip-java","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-sip-java","isPrimary":false,"firstSeenAt":"2026-04-18T22:07:49.010Z","lastSeenAt":"2026-04-22T06:54:48.394Z"}],"details":{"listingId":"9f66e43e-c322-43ac-844f-21871da3026e","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-sip-java","github":{"repo":"team-telnyx/ai","stars":167,"topics":["agent-skills","ai","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk","sip","sms","speech-to-text","telephony","telnyx","tts","twilio-migration","voice-agents","voice-ai","webrtc","windsurf"],"license":"mit","html_url":"https://github.com/team-telnyx/ai","pushed_at":"2026-04-21T22:09:49Z","description":"Official one-stop shop for AI Agents and developers building with Telnyx.","skill_md_sha":"33e84ff09b2f1f7953671be3fa7f726be9c2a4b6","skill_md_path":"skills/telnyx-sip-java/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-sip-java"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-sip-java","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-sip-java"},"updatedAt":"2026-04-22T06:54:48.394Z"}}