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