{"id":"4c95024b-0db9-4efd-a091-57f1c7b58599","shortId":"2PUvNv","kind":"skill","title":"telnyx-sip-python","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Sip - Python\n\n## Installation\n\n```bash\npip install telnyx\n```\n\n## Setup\n\n```python\nimport os\nfrom telnyx import Telnyx\n\nclient = Telnyx(\n    api_key=os.environ.get(\"TELNYX_API_KEY\"),  # This is the default and can be omitted\n)\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```python\nimport telnyx\n\ntry:\n    result = client.messages.send(to=\"+13125550001\", from_=\"+13125550002\", text=\"Hello\")\nexcept telnyx.APIConnectionError:\n    print(\"Network error — check connectivity and retry\")\nexcept telnyx.RateLimitError:\n    # 429: rate limited — wait and retry with exponential backoff\n    import time\n    time.sleep(1)  # Check Retry-After header for actual delay\nexcept telnyx.APIStatusError as e:\n    print(f\"API error {e.status_code}: {e.message}\")\n    if e.status_code == 422:\n        print(\"Validation error — check required fields and formats\")\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 an auto-paginating iterator. Use `for item in page_result:` to iterate through all pages automatically.\n\n## List all Access IP Ranges\n\n`GET /access_ip_ranges`\n\n```python\npage = client.access_ip_ranges.list()\npage = page.data[0]\nprint(page.id)\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```python\naccess_ip_range = client.access_ip_ranges.create(\n    cidr_block=\"203.0.113.0/24\",\n)\nprint(access_ip_range.id)\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```python\naccess_ip_range = client.access_ip_ranges.delete(\n    \"access_ip_range_id\",\n)\nprint(access_ip_range.id)\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```python\npage = client.connections.list()\npage = page.data[0]\nprint(page.id)\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```python\nconnection = client.connections.retrieve(\n    \"id\",\n)\nprint(connection.data)\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```python\npage = client.credential_connections.list()\npage = page.data[0]\nprint(page.id)\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```python\ncredential_connection = client.credential_connections.create(\n    connection_name=\"my name\",\n    password=\"my123secure456password789\",\n    user_name=\"myusername123\",\n)\nprint(credential_connection.data)\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```python\ncredential_connection = client.credential_connections.retrieve(\n    \"id\",\n)\nprint(credential_connection.data)\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```python\ncredential_connection = client.credential_connections.update(\n    id=\"550e8400-e29b-41d4-a716-446655440000\",\n)\nprint(credential_connection.data)\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```python\ncredential_connection = client.credential_connections.delete(\n    \"id\",\n)\nprint(credential_connection.data)\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```python\nresponse = client.credential_connections.actions.check_registration_status(\n    \"id\",\n)\nprint(response.data)\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```python\npage = client.fqdn_connections.list()\npage = page.data[0]\nprint(page.id)\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```python\nfqdn_connection = client.fqdn_connections.create(\n    connection_name=\"my-resource\",\n)\nprint(fqdn_connection.data)\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```python\nfqdn_connection = client.fqdn_connections.retrieve(\n    \"1293384261075731499\",\n)\nprint(fqdn_connection.data)\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```python\nfqdn_connection = client.fqdn_connections.update(\n    id=\"1293384261075731499\",\n)\nprint(fqdn_connection.data)\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```python\nfqdn_connection = client.fqdn_connections.delete(\n    \"1293384261075731499\",\n)\nprint(fqdn_connection.data)\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```python\npage = client.fqdns.list()\npage = page.data[0]\nprint(page.id)\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```python\nfqdn = client.fqdns.create(\n    connection_id=\"1516447646313612565\",\n    dns_record_type=\"a\",\n    fqdn=\"example.com\",\n)\nprint(fqdn.data)\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```python\nfqdn = client.fqdns.retrieve(\n    \"1517907029795014409\",\n)\nprint(fqdn.data)\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```python\nfqdn = client.fqdns.update(\n    id=\"1517907029795014409\",\n)\nprint(fqdn.data)\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```python\nfqdn = client.fqdns.delete(\n    \"1517907029795014409\",\n)\nprint(fqdn.data)\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```python\npage = client.ip_connections.list()\npage = page.data[0]\nprint(page.id)\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```python\nip_connection = client.ip_connections.create(\n    connection_name=\"my-ip-connection\",\n)\nprint(ip_connection.data)\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```python\nip_connection = client.ip_connections.retrieve(\n    \"id\",\n)\nprint(ip_connection.data)\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```python\nip_connection = client.ip_connections.update(\n    id=\"550e8400-e29b-41d4-a716-446655440000\",\n)\nprint(ip_connection.data)\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```python\nip_connection = client.ip_connections.delete(\n    \"id\",\n)\nprint(ip_connection.data)\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```python\npage = client.ips.list()\npage = page.data[0]\nprint(page.id)\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```python\nip = client.ips.create(\n    ip_address=\"192.168.0.0\",\n)\nprint(ip.data)\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```python\nip = client.ips.retrieve(\n    \"6a09cdc3-8948-47f0-aa62-74ac943d6c58\",\n)\nprint(ip.data)\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```python\nip = client.ips.update(\n    id=\"6a09cdc3-8948-47f0-aa62-74ac943d6c58\",\n    ip_address=\"192.168.0.0\",\n)\nprint(ip.data)\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```python\nip = client.ips.delete(\n    \"6a09cdc3-8948-47f0-aa62-74ac943d6c58\",\n)\nprint(ip.data)\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```python\npage = client.outbound_voice_profiles.list()\npage = page.data[0]\nprint(page.id)\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```python\noutbound_voice_profile = client.outbound_voice_profiles.create(\n    name=\"office\",\n)\nprint(outbound_voice_profile.data)\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```python\noutbound_voice_profile = client.outbound_voice_profiles.retrieve(\n    \"1293384261075731499\",\n)\nprint(outbound_voice_profile.data)\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```python\noutbound_voice_profile = client.outbound_voice_profiles.update(\n    id=\"1293384261075731499\",\n    name=\"office\",\n)\nprint(outbound_voice_profile.data)\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```python\noutbound_voice_profile = client.outbound_voice_profiles.delete(\n    \"1293384261075731499\",\n)\nprint(outbound_voice_profile.data)\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","python","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk"],"capabilities":["skill","source-team-telnyx","skill-telnyx-sip-python","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-python","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 (41,722 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.611Z","embedding":null,"createdAt":"2026-04-18T22:07:50.686Z","updatedAt":"2026-04-22T06:54:48.611Z","lastSeenAt":"2026-04-22T06:54:48.611Z","tsv":"'+13125550001':81 '+13125550002':83 '-47':4370,4425,4469 '-8948':4369,4424,4468 '/24':252 '/access_ip_ranges':197,237,285 '/actions/check_registration_status':1640 '/connections':338,437 '/credential_connections':519,681,986,1151,1453,1638 '/fqdn_connections':1690,1895,2237,2445,2777 '/fqdns':2988,3029,3089,3131,3183 '/ip_connections':3225,3380,3669,3827,4115 '/ips':4276,4314,4363,4408,4462 '/outbound_voice_profiles':4516,4605,4754,4840,4989 '0':203,344,525,1696,2994,3231,4282,4522 '1':109,399,497,656,797,957,1123,1270,1427,1590,1870,2010,2208,2417,2557,2752,2957,3355,3491,3640,3799,3939,4089,4245 '1293384261075731499':2243,2578,2783,4761,4903,4996 '1516447646313612565':3046 '1517907029795014409':3094,3150,3188 '192.168.0.0':4329,4432 '2':400,498,657,798,958,1124,1271,1428,1591,1871,2011,2209,2418,2558,2753,2958,3356,3492,3641,3800,3940,4090,4246 '203.0.113.0':251 '2833':582,736,883,1049,1204,1353,1516,1761,1947,2099,2308,2498,2643,2848,3288,3432,3573,3732,3880,4022,4178 '401':67,144 '403':148 '404':151 '41d4':1294,3963 '422':63,132,155 '429':60,97,161 '446655440000':1296,3965 '550e8400':1291,3960 '6a09cdc3':4368,4423,4467 '74ac943d6c58':4374,4429,4473 'a716':1295,3964 'aa62':4373,4428,4472 'access':193,233,245,281,286,291,295 'access_ip_range.id':254,300 'activ':348,446,529,689,830,996,1154,1300,1463,1700,1900,2038,2247,2448,2582,2787,3235,3382,3520,3679,3830,3969,4125 'actual':116 'ad':222,271,317 'address':1651,4295,4317,4328,4342,4387,4412,4431,4445,4486 'adjust':1702,2040,2249,2584,2789 'agent':1677 'alreadi':43 'alway':68 'amsterdam':363,461,544,704,845,1011,1169,1315,1478,1719,1915,2057,2266,2463,2601,2806,3250,3397,3535,3694,3845,3984,4140 'anchorsit':350,448,531,691,832,998,1156,1302,1465,1706,1902,2044,2253,2450,2588,2793,3237,3384,3522,3681,3832,3971,4127 'android':554,714,855,1021,1179,1325,1488,1729,1925,2067,2276,2473,2611,2816,3260,3407,3545,3704,3855,3994,4150 'api':23,27,51,124,146,396,494,653,794,954,1120,1267,1424,1587,1867,2007,2205,2414,2554,2749,2954,3352,3488,3637,3796,3936,4086,4242 'applic':1667 'array':390,488,644,791,945,1111,1261,1415,1578,1838,1998,2176,2385,2545,2720,2925,3340,3479,3625,3784,3927,4074,4230,4574,4592,4644,4659,4719,4737,4813,4831,4880,4895,4957,4975,5048,5066 'ashburn':356,454,537,697,838,1004,1162,1308,1471,1712,1908,2050,2259,2456,2594,2799,3243,3390,3528,3687,3838,3977,4133 'assum':40 'australia':362,460,543,703,844,1010,1168,1314,1477,1718,1914,2056,2265,2462,2600,2805,3249,3396,3534,3693,3844,3983,4139 'authent':65,426 'auto':176 'auto-pagin':175 'automat':190 'backoff':105,167 'bash':9 'belong':2978,4266,4506 'bill':4526,4609,4671,4765,4845,4909,5000 'bit':1783,2121,2330,2665,2870 'block':208,240,250,257,303 'boolean':349,447,530,564,577,590,624,690,724,731,744,776,831,865,878,891,925,997,1031,1044,1057,1091,1155,1189,1199,1212,1244,1301,1335,1348,1361,1395,1464,1498,1511,1524,1558,1701,1705,1738,1743,1756,1769,1780,1784,1799,1815,1832,1836,1844,1901,1935,1942,1955,1975,1991,2039,2043,2076,2081,2094,2107,2118,2122,2137,2153,2170,2174,2182,2248,2252,2285,2290,2303,2316,2327,2331,2346,2362,2379,2383,2391,2449,2483,2493,2506,2538,2583,2587,2620,2625,2638,2651,2662,2666,2681,2697,2714,2718,2726,2788,2792,2825,2830,2843,2856,2867,2871,2886,2902,2919,2923,2931,3236,3270,3283,3296,3330,3383,3417,3427,3440,3472,3521,3555,3568,3581,3615,3680,3714,3727,3740,3774,3831,3865,3875,3888,3920,3970,4004,4017,4030,4064,4126,4160,4173,4186,4220,4555,4557,4632,4634,4700,4702,4794,4796,4868,4870,4938,4940,5029,5031 'buffer':607,759,908,1074,1227,1378,1541,1794,1970,2132,2341,2521,2676,2881,3313,3455,3598,3757,3903,4047,4203 'ca':360,458,541,701,842,1008,1166,1312,1475,1716,1912,2054,2263,2460,2598,2803,3247,3394,3532,3691,3842,3981,4137 'call':52,560,637,720,784,861,938,1027,1104,1185,1254,1331,1408,1494,1571,1735,1739,1931,2073,2077,2282,2286,2479,2617,2621,2822,2826,3266,3413,3551,3710,3861,4000,4156,4530,4533,4537,4613,4616,4620,4675,4678,4682,4769,4772,4776,4849,4852,4856,4913,4916,4920,5004,5007,5011 'canada':368,370,466,468,549,551,709,711,850,852,1016,1018,1174,1176,1320,1322,1483,1485,1724,1726,1920,1922,2062,2064,2271,2273,2468,2470,2606,2608,2811,2813,3255,3257,3402,3404,3540,3542,3699,3701,3850,3852,3989,3991,4145,4147 'chang':1831,2169,2378,2713,2918 'check':91,110,136,158,1606,1612 'chicago':354,452,535,695,836,1002,1160,1306,1469,1710,1906,2048,2257,2454,2592,2797,3241,3388,3526,3685,3836,3975,4131 'cidr':207,239,249,256,302 'client':21,41 'client.access_ip_ranges.create':248 'client.access_ip_ranges.delete':294 'client.access_ip_ranges.list':200 'client.connections.list':341 'client.connections.retrieve':441 'client.credential_connections.actions.check':1643 'client.credential_connections.create':817 'client.credential_connections.delete':1458 'client.credential_connections.list':522 'client.credential_connections.retrieve':991 'client.credential_connections.update':1289 'client.fqdn_connections.create':2029 'client.fqdn_connections.delete':2782 'client.fqdn_connections.list':1693 'client.fqdn_connections.retrieve':2242 'client.fqdn_connections.update':2576 'client.fqdns.create':3043 'client.fqdns.delete':3187 'client.fqdns.list':2991 'client.fqdns.retrieve':3093 'client.fqdns.update':3148 'client.ip_connections.create':3510 'client.ip_connections.delete':4120 'client.ip_connections.list':3228 'client.ip_connections.retrieve':3674 'client.ip_connections.update':3958 'client.ips.create':4326 'client.ips.delete':4466 'client.ips.list':4279 'client.ips.retrieve':4367 'client.ips.update':4421 'client.messages.send':79 'client.outbound_voice_profiles.create':4665 'client.outbound_voice_profiles.delete':4995 'client.outbound_voice_profiles.list':4519 'client.outbound_voice_profiles.retrieve':4760 'client.outbound_voice_profiles.update':4901 'code':73,127,131,143 'codec':1828,2166,2375,2710,2915 'comfort':574,728,875,1041,1196,1345,1508,1753,1939,2091,2300,2490,2635,2840,3280,3424,3565,3724,3872,4014,4170 'common':141 'concurr':4536,4619,4681,4775,4855,4919,5010 'connect':92,327,333,373,412,422,434,440,471,510,517,565,675,679,686,816,818,866,976,984,990,1032,1142,1149,1190,1288,1336,1446,1451,1457,1499,1609,1619,1681,1688,1744,1889,1893,1897,2028,2030,2082,2227,2235,2241,2291,2436,2443,2484,2575,2626,2771,2775,2781,2831,2998,3035,3044,3056,3098,3134,3154,3192,3216,3223,3271,3374,3378,3418,3509,3511,3516,3556,3659,3667,3673,3715,3818,3825,3866,3957,4005,4108,4113,4119,4161,4286,4319,4333,4378,4414,4436,4477,4541,4686,4780,4924,5015 'connection.data':444 'contact':587,741,888,1054,1209,1358,1521,1766,1952,2104,2313,2503,2648,2853,3293,3437,3578,3737,3885,4027,4183 'control':1842,2180,2389,2724,2929 'convers':4579,4649,4724,4818,4885,4962,5053 'cost':561,721,862,1028,1186,1332,1495,1736,1740,1932,2074,2078,2283,2287,2480,2618,2622,2823,2827,3267,3414,3552,3711,3862,4001,4157 'count':4542,4687,4781,4925,5016 'creat':210,231,259,305,376,474,568,672,676,869,1035,1339,1502,1747,1886,1890,2085,2294,2629,2834,3001,3020,3023,3059,3101,3157,3195,3274,3371,3375,3559,3718,4008,4164,4289,4305,4308,4336,4381,4439,4480,4544,4594,4599,4689,4783,4927,5018 'credenti':509,516,556,602,674,678,716,754,815,857,903,975,983,989,1023,1069,1141,1148,1181,1222,1287,1327,1373,1445,1450,1456,1490,1536,1608,1618,1731,1789,1927,1965,2069,2127,2278,2336,2475,2516,2613,2671,2818,2876,3262,3308,3409,3450,3547,3593,3706,3752,3857,3898,3996,4042,4152,4198 'credential_connection.data':828,994,1298,1461 'daili':4547,4551,4624,4628,4692,4696,4786,4790,4860,4864,4930,4934,5021,5025 'date':213,226,262,275,308,321 'date-tim':212,225,261,274,307,320 'deck':4589,4656,4734,4828,4892,4972,5063 'default':32,571,725,872,1038,1193,1342,1505,1750,1936,2088,2297,2487,2632,2837,3277,3421,3562,3721,3869,4011,4167 'delay':117 'delet':280,284,1443,1447,1452,2768,2772,2776,3176,3179,3182,4105,4109,4114,4455,4458,4461,4977,4982,4988 'descript':215,242,264,310 'destin':4561,4591,4636,4658,4706,4736,4800,4830,4872,4894,4944,4974,5035,5065 'detail':418,618,770,919,979,1085,1238,1389,1552,1809,1985,2147,2230,2356,2532,2691,2896,3083,3125,3324,3466,3609,3662,3768,3914,4058,4214,4357,4402,4746 'disabl':615,640,767,787,916,941,1082,1107,1235,1257,1386,1411,1549,1574,1806,1982,2144,2353,2529,2688,2893,3321,3463,3606,3765,3911,4055,4211 'dns':3004,3032,3047,3062,3104,3137,3160,3198 'dtmf':578,732,879,1045,1200,1349,1512,1703,1757,1778,1943,2041,2095,2116,2250,2304,2325,2494,2585,2639,2660,2790,2844,2865,3284,3428,3569,3728,3876,4018,4174 'durat':1779,2117,2326,2661,2866 'e':121 'e.message':128 'e.status':126,130 'e29b':1293,3962 'e29b-41d4-a716':1292,3961 'enabl':576,589,623,730,743,775,877,890,924,1043,1056,1090,1198,1211,1243,1347,1360,1394,1510,1523,1557,1737,1755,1768,1814,1843,1941,1954,1990,2075,2093,2106,2152,2181,2284,2302,2315,2361,2390,2492,2505,2537,2619,2637,2650,2696,2725,2824,2842,2855,2901,2930,3282,3295,3329,3426,3439,3471,3567,3580,3614,3726,3739,3773,3874,3887,3919,4016,4029,4063,4172,4185,4219,4554,4556,4631,4633,4699,4701,4793,4795,4867,4869,4937,4939,5028,5030 'encod':586,740,887,1053,1208,1357,1520,1765,1951,2103,2312,2502,2647,2852,3292,3436,3577,3736,3884,4026,4182 'encrypt':591,745,892,1058,1213,1362,1525,1770,1956,2108,2317,2507,2652,2857,3297,3441,3582,3741,3889,4031,4187 'endpoint':430 'enum':220,269,315,352,398,450,496,533,580,593,611,639,655,693,734,747,763,786,796,834,881,894,912,940,956,1000,1047,1060,1078,1106,1122,1158,1202,1215,1231,1256,1269,1304,1351,1364,1382,1410,1426,1467,1514,1527,1545,1573,1589,1665,1708,1759,1772,1802,1847,1869,1904,1945,1958,1978,2002,2009,2046,2097,2110,2140,2185,2207,2255,2306,2319,2349,2394,2416,2452,2496,2509,2525,2549,2556,2590,2641,2654,2684,2729,2751,2795,2846,2859,2889,2934,2956,3239,3286,3299,3317,3344,3354,3386,3430,3443,3459,3483,3490,3524,3571,3584,3602,3629,3639,3683,3730,3743,3761,3788,3798,3834,3878,3891,3907,3931,3938,3973,4020,4033,4051,4078,4088,4129,4176,4189,4207,4234,4244,4571,4578,4586,4641,4648,4653,4716,4723,4731,4810,4817,4825,4877,4884,4889,4954,4961,4969,5045,5052,5060 'error':48,57,62,66,70,90,125,135,142,157 'event':402,407,500,505,659,664,801,806,960,965,1126,1131,1273,1278,1430,1435,1593,1598,1632,1873,1878,2013,2018,2211,2216,2420,2425,2560,2565,2755,2760,2960,2965,3358,3363,3494,3499,3643,3648,3802,3807,3942,3947,4092,4097,4248,4253 'exampl':38 'example.com':3052 'except':86,95,118 'exist':421,982,1147,1449,2233,2441,3665,3823,4111,4749,4835,4984 'expir':1671 'exponenti':104,166 'f':123 'f0':4372,4427,4471 'f0-aa62-74ac943d6c58':4371,4426,4470 'fail':54,1670 'failov':403,501,660,802,961,1127,1274,1431,1594,1874,2014,2212,2421,2561,2756,2961,3359,3495,3644,3803,3943,4093,4249 'field':138,159 'filter':2986,4274,4514 'format':140,160 'found':154 'fqdn':1680,1687,1888,1892,2027,2226,2234,2240,2435,2442,2574,2770,2774,2780,3008,3022,3026,3031,3042,3051,3066,3080,3087,3092,3108,3122,3129,3141,3147,3164,3178,3181,3186,3202 'fqdn.data':3054,3096,3152,3190 'fqdn_connection.data':2036,2245,2580,2785 'fqdns':2974,2977 'frankfurt':371,469,552,712,853,1019,1177,1323,1486,1727,1923,2065,2274,2471,2609,2814,3258,3405,3543,3702,3853,3992,4148 'germani':372,470,553,713,854,1020,1178,1324,1487,1728,1924,2066,2275,2472,2610,2815,3259,3406,3544,3703,3854,3993,4149 'get':196,337,436,518,985,1689,2236,2975,2987,3088,3224,3668,4263,4275,4362,4496,4501,4515,4753 'given':2985,4273,4513 'global':4572,4642,4717,4811,4878,4955,5046 'group':4527,4610,4672,4766,4846,4910,5001 'handl':49,69 'header':114,588,742,889,1055,1210,1359,1522,1767,1953,2105,2314,2504,2649,2854,3294,3438,3579,3738,3886,4028,4184 'hello':85 'high':416 'high-level':415 'hold':573,727,874,1040,1195,1344,1507,1752,1938,2090,2299,2489,2634,2839,3279,3423,3564,3723,3871,4013,4169 'id':217,229,266,278,289,298,312,324,379,384,438,442,477,482,557,596,603,717,755,858,897,904,987,992,1024,1063,1070,1152,1182,1223,1290,1328,1367,1374,1454,1459,1491,1530,1537,1639,1646,1732,1775,1790,1928,1966,2070,2113,2128,2238,2279,2322,2337,2446,2476,2517,2577,2614,2657,2672,2778,2819,2862,2877,2999,3010,3036,3045,3057,3068,3090,3099,3110,3132,3135,3149,3155,3166,3184,3193,3204,3263,3302,3309,3410,3451,3548,3587,3594,3670,3675,3707,3746,3753,3828,3858,3899,3959,3997,4036,4043,4116,4121,4153,4192,4199,4287,4292,4320,4334,4339,4364,4379,4384,4409,4415,4422,4437,4442,4463,4478,4483,4528,4558,4611,4673,4703,4755,4767,4797,4841,4847,4902,4911,4941,4990,5002,5032 'ignor':1777,1781,2115,2119,2324,2328,2659,2663,2864,2868 'il':355,453,536,696,837,1003,1161,1307,1470,1711,1907,2049,2258,2455,2593,2798,3242,3389,3527,3686,3837,3976,4132 'import':15,19,75,106,168 'inband':583,737,884,1050,1205,1354,1517,1762,1948,2100,2309,2499,2644,2849,3289,3433,3574,3733,3881,4023,4179 'inbound':598,612,750,764,899,913,1065,1079,1218,1232,1369,1383,1532,1546,1785,1803,1961,1979,2123,2141,2332,2350,2512,2526,2667,2685,2872,2890,3304,3318,3446,3460,3589,3603,3748,3762,3894,3908,4038,4052,4194,4208 'info':585,739,886,1052,1207,1356,1519,1764,1950,2102,2311,2501,2646,2851,3291,3435,3576,3735,3883,4025,4181 'inform':427 'initi':44 'instal':8,11 'insuffici':149 'integ':670,812,971,1137,1284,1441,1604,1657,1856,1884,2024,2194,2222,2403,2431,2571,2738,2766,2943,2971,3013,3039,3071,3113,3144,3169,3207,3369,3505,3654,3813,3953,4103,4259,4298,4323,4345,4390,4418,4448,4489,4539,4543,4622,4684,4688,4778,4782,4858,4922,4926,5013,5017 'intern':642,789,943,1109,1259,1413,1576 'invalid':145 'io':600,752,901,1067,1220,1371,1534,1787,1963,2125,2334,2514,2669,2874,3306,3448,3591,3750,3896,4040,4196 'ip':194,234,246,282,287,292,296,1650,3215,3222,3373,3377,3508,3515,3658,3666,3672,3817,3824,3956,4107,4112,4118,4262,4265,4294,4307,4311,4316,4325,4327,4341,4354,4361,4366,4386,4399,4406,4411,4420,4430,4444,4457,4460,4465,4485 'ip.data':4331,4376,4434,4475 'ip_connection.data':3518,3677,3967,4123 'irrespect':334 'item':181 'iter':178,186 'jitter':606,758,907,1073,1226,1377,1540,1793,1969,2131,2340,2520,2675,2880,3312,3454,3597,3756,3902,4046,4202 'jose':359,457,540,700,841,1007,1165,1311,1474,1715,1911,2053,2262,2459,2597,2802,3246,3393,3531,3690,3841,3980,4136 'key':24,28,147 'last':1629,1653 'latenc':353,451,534,694,835,1001,1159,1305,1468,1709,1905,2047,2256,2453,2591,2796,3240,3387,3525,3684,3835,3974,4130 'level':417 'limit':59,99,163,4538,4549,4553,4621,4626,4630,4683,4694,4698,4777,4788,4792,4857,4862,4866,4921,4932,4936,5012,5023,5027 'list':171,191,326,330,508,513,1679,1684,2973,3214,3219,4261 'london':365,463,546,706,847,1013,1171,1317,1480,1721,1917,2059,2268,2465,2603,2808,3252,3399,3537,3696,3847,3986,4142 'mark':1782,2120,2329,2664,2869 'match':2983,4271,4511 'max':4560,4635,4705,4799,4871,4943,5034 'media':592,746,893,1059,1214,1363,1526,1771,1957,2109,2318,2508,2653,2858,3298,3442,3583,3742,3890,4032,4188 'method':172,4585,4652,4730,4824,4888,4968,5059 'microsoft':1796,1972,2134,2343,2678,2883 'my-ip-connect':3513 'my-resourc':2032 'my123secure456password789':823 'myusername123':826 'name':374,472,566,650,684,687,819,821,825,867,951,1033,1117,1191,1264,1337,1421,1500,1584,1745,1852,1864,1898,2031,2083,2190,2202,2292,2399,2411,2485,2627,2734,2746,2832,2939,2951,3272,3419,3512,3557,3716,3867,4006,4162,4564,4607,4666,4709,4803,4843,4904,4947,5038 'netherland':364,462,545,705,846,1012,1170,1316,1479,1720,1916,2058,2267,2464,2602,2807,3251,3398,3536,3695,3846,3985,4141 'network':56,89 'new':232,3025,4310 'nois':575,609,616,729,761,768,876,910,917,1042,1076,1083,1197,1229,1236,1346,1380,1387,1509,1543,1550,1754,1800,1807,1940,1976,1983,2092,2138,2145,2301,2347,2354,2491,2523,2530,2636,2682,2689,2841,2887,2894,3281,3315,3322,3425,3457,3464,3566,3600,3607,3725,3759,3766,3873,3905,3912,4015,4049,4056,4171,4205,4212 'none':595,749,896,1062,1217,1366,1529,1774,1960,2112,2321,2511,2656,2861,3301,3445,3586,3745,3893,4035,4191 'normal':1834,2172,2381,2716,2921 'note':169 'null':559,605,671,719,757,813,860,906,972,1026,1072,1138,1184,1225,1285,1330,1376,1442,1493,1539,1605,1734,1792,1885,1930,1968,2025,2072,2130,2223,2281,2339,2432,2478,2519,2572,2616,2674,2767,2821,2879,2972,3040,3145,3265,3311,3370,3412,3453,3506,3550,3596,3655,3709,3755,3814,3860,3901,3954,3999,4045,4104,4155,4201,4260,4540,4623,4685,4779,4859,4923,5014 'number':4563,4638,4708,4802,4874,4946,5037 'object':599,608,619,626,634,751,760,771,778,781,900,909,920,927,935,1066,1075,1086,1093,1101,1219,1228,1239,1246,1251,1370,1379,1390,1397,1405,1533,1542,1553,1560,1568,1786,1795,1810,1817,1825,1962,1971,1986,1993,1996,2124,2133,2148,2155,2163,2333,2342,2357,2364,2372,2513,2522,2533,2540,2543,2668,2677,2692,2699,2707,2873,2882,2897,2904,2912,3027,3305,3314,3325,3332,3338,3447,3456,3467,3474,3477,3590,3599,3610,3617,3623,3749,3758,3769,3776,3782,3895,3904,3915,3922,3925,4039,4048,4059,4066,4072,4195,4204,4215,4222,4228,4312,4532,4535,4615,4618,4677,4680,4771,4774,4851,4854,4915,4918,5006,5009 'offic':4667,4905 'omit':36 'onnet':620,772,921,1087,1240,1391,1554,1811,1987,2149,2358,2534,2693,2898,3326,3468,3611,3770,3916,4060,4216 'option':241,688,1153,1899,2447,3037,3133,3381,3829,4318,4413,4608,4844 'os':16 'os.environ.get':25 'outbound':381,479,613,625,765,777,914,926,1080,1092,1233,1245,1384,1396,1547,1559,1804,1816,1980,1992,2142,2154,2351,2363,2527,2539,2686,2698,2891,2903,3319,3331,3461,3473,3604,3616,3763,3775,3909,3921,4053,4065,4209,4221,4498,4503,4596,4601,4662,4741,4750,4757,4836,4898,4979,4985,4992 'outbound_voice_profile.data':4669,4763,4907,4998 'overrid':351,449,532,692,833,999,1157,1303,1466,1707,1903,2045,2254,2451,2589,2794,3238,3385,3523,3682,3833,3972,4128 'page':183,189,199,201,340,342,521,523,1692,1694,2990,2992,3227,3229,4278,4280,4518,4520 'page.data':202,343,524,1695,2993,3230,4281,4521 'page.id':205,346,527,1698,2996,3233,4284,4524 'pagin':170,177 'parti':1841,2179,2388,2723,2928 'pass':1827,2165,2374,2709,2914 'passthrough':622,774,923,1089,1242,1393,1556,1813,1989,2151,2360,2536,2695,2900,3328,3470,3613,3772,3918,4062,4218 'password':627,685,822,928,1094,1247,1398,1561,1818,2156,2365,2700,2905 'patch':1150,2444,3130,3826,4407,4839 'payment':4584,4651,4729,4823,4887,4967,5058 'pend':221,270,316 'permiss':150 'pip':10 'plan':4570,4640,4715,4809,4876,4953,5044 'port':1656,3012,3038,3070,3112,3143,3168,3206,4297,4322,4344,4389,4417,4447,4488 'post':236,680,1637,1894,3028,3379,4313,4604 'prefer':638,785,939,1105,1255,1409,1572 'print':88,122,133,204,253,299,345,443,526,827,993,1297,1460,1647,1697,2035,2244,2579,2784,2995,3053,3095,3151,3189,3232,3517,3676,3966,4122,4283,4330,4375,4433,4474,4523,4668,4762,4906,4997 'product':72 'profil':383,481,4500,4505,4598,4603,4664,4743,4752,4759,4838,4900,4981,4987,4994 'protocol':1846,2001,2184,2393,2548,2728,2933,3343,3482,3628,3787,3930,4077,4233 'push':555,601,715,753,856,902,1022,1068,1180,1221,1326,1372,1489,1535,1730,1788,1926,1964,2068,2126,2277,2335,2474,2515,2612,2670,2817,2875,3261,3307,3408,3449,3546,3592,3705,3751,3856,3897,3995,4041,4151,4197 'python':4,7,14,74,198,244,290,339,439,520,814,988,1286,1455,1641,1691,2026,2239,2573,2779,2989,3041,3091,3146,3185,3226,3507,3671,3955,4117,4277,4324,4365,4419,4464,4517,4661,4756,4897,4991 'rang':195,235,247,283,288,293,297 'rate':58,98,162,4562,4588,4637,4655,4707,4733,4801,4827,4873,4891,4945,4971,5036,5062 'rate-deck':4587,4654,4732,4826,4890,4970,5061 'record':386,484,629,930,1096,1400,1563,1658,1820,2158,2367,2702,2907,3005,3014,3033,3048,3063,3072,3105,3114,3138,3161,3170,3199,3208,3333,3618,3777,4067,4223,4299,4346,4391,4449,4490,4531,4566,4614,4676,4711,4770,4805,4850,4914,4949,5005,5040 'regard':3084,4358 'regist':1669,1672 'registr':1610,1614,1620,1631,1633,1644,1654 'requir':137,238,682,1896,3030,4315,4410,4606,4842 'resourc':152,2034 'respons':1642 'response.data':1648 'result':78,184 'retri':94,102,112,164 'retriev':410,413,424,973,977,2224,2228,3078,3656,3660,4352,4739,4744 'retry-aft':111 'return':173,206,255,301,328,347,445,511,528,829,995,1299,1462,1649,1682,1699,2037,2246,2581,2786,2997,3055,3081,3097,3153,3191,3217,3234,3519,3678,3968,4124,4285,4332,4355,4377,4435,4476,4525,4670,4764,4908,4999 'rfc':581,735,882,1048,1203,1352,1515,1760,1946,2098,2307,2497,2642,2847,3287,3431,3572,3731,3879,4021,4177 'rtcp':632,779,933,1099,1249,1403,1566,1823,1994,2161,2370,2541,2705,2910,3336,3475,3621,3780,3923,4070,4226 'rtp':1826,2164,2373,2708,2913 'san':358,456,539,699,840,1006,1164,1310,1473,1714,1910,2052,2261,2458,2596,2801,3245,3392,3530,3689,3840,3979,4135 'sbc':1798,1974,2136,2345,2680,2885 'sec':669,811,970,1136,1283,1440,1603,1883,2023,2221,2430,2570,2765,2970,3368,3504,3653,3812,3952,4102,4258 'send':1833,2171,2380,2715,2920 'servic':4569,4639,4714,4808,4875,4952,5043 'set':633,780,934,1100,1144,1250,1404,1567,1824,1995,2162,2371,2438,2542,2706,2911,3337,3476,3622,3781,3820,3924,4071,4227 'setup':13 'shown':46 'sip':3,6,584,635,738,782,885,936,1051,1102,1206,1252,1355,1406,1518,1569,1630,1661,1763,1949,2101,2310,2500,2645,2850,3290,3434,3575,3734,3882,4024,4180 'skill' 'skill-telnyx-sip-python' 'source-team-telnyx' 'specif':425,433,3086,3128,4360,4405 'spend':4548,4552,4625,4629,4693,4697,4787,4791,4861,4865,4931,4935,5022,5026 'srtp':594,748,895,1061,1216,1365,1528,1773,1959,2111,2320,2510,2655,2860,3300,3444,3585,3744,3892,4034,4190 'status':219,268,314,1611,1615,1621,1634,1645,1664 'stream':1830,2168,2377,2712,2917 'string':209,216,218,230,243,258,265,267,279,304,311,313,325,375,378,380,385,388,391,394,473,476,478,483,486,489,492,558,567,570,597,604,628,631,645,648,651,718,756,792,859,868,871,898,905,929,932,946,949,952,1025,1034,1037,1064,1071,1095,1098,1112,1115,1118,1183,1192,1224,1248,1262,1265,1329,1338,1341,1368,1375,1399,1402,1416,1419,1422,1492,1501,1504,1531,1538,1562,1565,1579,1582,1585,1652,1655,1660,1663,1675,1678,1733,1746,1749,1776,1791,1819,1822,1839,1853,1859,1862,1865,1929,1967,1999,2071,2084,2087,2114,2129,2157,2160,2177,2191,2197,2200,2203,2280,2293,2296,2323,2338,2366,2369,2386,2400,2406,2409,2412,2477,2486,2518,2546,2615,2628,2631,2658,2673,2701,2704,2721,2735,2741,2744,2747,2820,2833,2836,2863,2878,2906,2909,2926,2940,2946,2949,2952,3000,3003,3007,3009,3011,3016,3019,3058,3061,3065,3067,3069,3074,3077,3100,3103,3107,3109,3111,3116,3119,3136,3140,3142,3156,3159,3163,3165,3167,3172,3175,3194,3197,3201,3203,3205,3210,3213,3264,3273,3276,3303,3310,3335,3341,3350,3411,3420,3452,3480,3549,3558,3561,3588,3595,3620,3626,3635,3708,3717,3720,3747,3754,3779,3785,3794,3859,3868,3900,3928,3998,4007,4010,4037,4044,4069,4075,4084,4154,4163,4166,4193,4200,4225,4231,4240,4288,4291,4293,4296,4301,4304,4321,4335,4338,4340 'suppress':610,617,762,769,911,918,1077,1084,1230,1237,1381,1388,1544,1551,1801,1808,1977,1984,2139,2146,2348,2355,2524,2531,2683,2690,2888,2895,3316,3323,3458,3465,3601,3608,3760,3767,3906,3913,4050,4057,4206,4213 'sydney':361,459,542,702,843,1009,1167,1313,1476,1717,1913,2055,2264,2461,2599,2804,3248,3395,3533,3692,3843,3982,4138 't38':621,773,922,1088,1241,1392,1555,1812,1988,2150,2359,2535,2694,2899,3327,3469,3612,3771,3917,4061,4217 'tag':389,487,643,790,944,1110,1260,1414,1577,1837,1997,2175,2384,2544,2719,2924,3339,3478,3624,3783,3926,4073,4229,4573,4643,4718,4812,4879,4956,5047 'tcp':1849,2004,2187,2396,2551,2731,2936,3346,3485,3631,3790,3933,4080,4236 'team':1797,1973,2135,2344,2679,2884 'telnyx':2,5,12,18,20,22,26,76 'telnyx-sip-python':1 'telnyx.apiconnectionerror':87 'telnyx.apistatuserror':119 'telnyx.ratelimiterror':96 'texml':799 'text':84 'third':1840,2178,2387,2722,2927 'time':107,214,227,263,276,309,322 'time.sleep':108 'timeout':668,810,969,1135,1282,1439,1602,1882,2022,2220,2429,2569,2764,2969,3367,3503,3652,3811,3951,4101,4257 'timestamp':1626,1704,1835,2042,2173,2251,2382,2586,2717,2791,2922 'tls':1850,2005,2188,2397,2552,2732,2937,3347,3486,3632,3791,3934,4081,4237 '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':367,465,548,708,849,1015,1173,1319,1482,1723,1919,2061,2270,2467,2605,2810,3254,3401,3539,3698,3849,3988,4144 'traffic':4576,4646,4721,4815,4882,4959,5050 'transport':1674,1845,2000,2183,2392,2547,2727,2932,3342,3481,3627,3786,3929,4076,4232 'tri':77 'ttl':1855,2193,2402,2737,2942 'txt':1851,1854,1857,2189,2192,2195,2398,2401,2404,2733,2736,2739,2938,2941,2944 'type':336,387,435,485,579,630,733,880,931,1046,1097,1201,1350,1401,1513,1564,1659,1758,1821,1944,2096,2159,2305,2368,2495,2640,2703,2845,2908,3006,3015,3034,3049,3064,3073,3106,3115,3139,3162,3171,3200,3209,3285,3334,3429,3570,3619,3729,3778,3877,4019,4068,4175,4224,4300,4347,4392,4450,4491,4567,4577,4647,4712,4722,4806,4816,4883,4950,4960,5041,5051 'udp':1848,2003,2186,2395,2550,2730,2935,3345,3484,3630,3789,3932,4079,4235 'uk':366,464,547,707,848,1014,1172,1318,1481,1722,1918,2060,2269,2466,2604,2809,3253,3400,3538,3697,3848,3987,4143 'unregist':1673 'unrestrict':641,788,942,1108,1258,1412,1575 'updat':223,272,318,392,490,646,947,1113,1139,1143,1417,1580,1635,1860,2198,2407,2433,2437,2742,2947,3017,3075,3117,3120,3123,3173,3211,3348,3633,3792,3815,3819,4082,4238,4302,4349,4394,4397,4400,4452,4493,4580,4725,4819,4833,4963,5054 'uri':405,409,503,507,636,662,666,783,804,808,937,963,967,1103,1129,1133,1253,1276,1280,1407,1433,1437,1570,1596,1600,1876,1880,2016,2020,2214,2218,2423,2427,2563,2567,2758,2762,2963,2967,3361,3365,3497,3501,3646,3650,3805,3809,3945,3949,4095,4099,4251,4255 'url':404,408,502,506,661,665,803,807,962,966,1128,1132,1275,1279,1432,1436,1595,1599,1875,1879,2015,2019,2213,2217,2422,2426,2562,2566,2757,2761,2962,2966,3360,3364,3496,3500,3645,3649,3804,3808,3944,3948,4094,4098,4250,4254 'usag':4583,4650,4728,4822,4886,4966,5057 'use':179,428 'user':228,277,323,649,683,824,950,1116,1263,1420,1583,1676,1863,2201,2410,2745,2950,2981,4269,4509 'usernam':1662 'uuid':4529,4612,4674,4768,4848,4912,5003 'va':357,455,538,698,839,1005,1163,1309,1472,1713,1909,2051,2260,2457,2595,2800,3244,3391,3529,3688,3839,3978,4134 'valid':61,134,156 'valu':1858,2196,2405,2740,2945 'vancouv':369,467,550,710,851,1017,1175,1321,1484,1725,1921,2063,2272,2469,2607,2812,3256,3403,3541,3700,3851,3990,4146 'version':397,495,654,795,955,1121,1268,1425,1588,1868,2008,2206,2415,2555,2750,2955,3353,3489,3638,3797,3937,4087,4243 'voic':382,480,4499,4504,4597,4602,4663,4742,4751,4758,4837,4899,4980,4986,4993 'wait':100 'webhook':395,401,406,493,499,504,563,652,658,663,667,723,793,800,805,809,864,953,959,964,968,1030,1119,1125,1130,1134,1188,1266,1272,1277,1281,1334,1423,1429,1434,1438,1497,1586,1592,1597,1601,1742,1866,1872,1877,1881,1934,2006,2012,2017,2021,2080,2204,2210,2215,2219,2289,2413,2419,2424,2428,2482,2553,2559,2564,2568,2624,2748,2754,2759,2763,2829,2953,2959,2964,2968,3269,3351,3357,3362,3366,3416,3487,3493,3498,3502,3554,3636,3642,3647,3651,3713,3795,3801,3806,3810,3864,3935,3941,3946,3950,4003,4085,4091,4096,4100,4159,4241,4247,4252,4256 'well':1623 'whitelist':4590,4657,4735,4829,4893,4973,5064 'window':4534,4617,4679,4773,4853,4917,5008","prices":[{"id":"70155492-744a-4bec-918e-021f65bc7cda","listingId":"4c95024b-0db9-4efd-a091-57f1c7b58599","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:50.686Z"}],"sources":[{"listingId":"4c95024b-0db9-4efd-a091-57f1c7b58599","source":"github","sourceId":"team-telnyx/ai/telnyx-sip-python","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-sip-python","isPrimary":false,"firstSeenAt":"2026-04-18T22:07:50.686Z","lastSeenAt":"2026-04-22T06:54:48.611Z"}],"details":{"listingId":"4c95024b-0db9-4efd-a091-57f1c7b58599","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-sip-python","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":"2d5de9b9abfd21dffcc2946bebca8d569d79893e","skill_md_path":"skills/telnyx-sip-python/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-sip-python"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-sip-python","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-sip-python"},"updatedAt":"2026-04-22T06:54:48.611Z"}}