{"id":"0a78574f-bc84-43e8-a5fc-0702a99f7ea4","shortId":"4TNN8e","kind":"skill","title":"telnyx-numbers-config-curl","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Numbers Config - 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- **Phone numbers** must be in E.164 format (e.g., `+13125550001`). Include the `+` prefix and country code. No spaces, dashes, or parentheses.\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## Bulk update phone number profiles\n\n`POST /messaging_numbers_bulk_updates` — Required: `messaging_profile_id`, `numbers`\n\nOptional: `assign_only` (boolean)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"messaging_profile_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n  \"numbers\": [\n    \"+13125550001\"\n  ]\n}' \\\n  \"https://api.telnyx.com/v2/messaging_numbers_bulk_updates\"\n```\n\nReturns: `failed` (array[string]), `order_id` (uuid), `pending` (array[string]), `record_type` (enum: messaging_numbers_bulk_update), `success` (array[string])\n\n## Retrieve bulk update status\n\n`GET /messaging_numbers_bulk_updates/{order_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/messaging_numbers_bulk_updates/{order_id}\"\n```\n\nReturns: `failed` (array[string]), `order_id` (uuid), `pending` (array[string]), `record_type` (enum: messaging_numbers_bulk_update), `success` (array[string])\n\n## List mobile phone numbers with messaging settings\n\n`GET /mobile_phone_numbers/messaging`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/mobile_phone_numbers/messaging\"\n```\n\nReturns: `country_code` (string), `created_at` (date-time), `features` (object), `id` (string), `messaging_product` (string), `messaging_profile_id` (string | null), `organization_id` (string), `phone_number` (string), `record_type` (enum: messaging_phone_number, messaging_settings), `tags` (array[string]), `traffic_type` (string), `type` (enum: longcode), `updated_at` (date-time)\n\n## Retrieve a mobile phone number with messaging settings\n\n`GET /mobile_phone_numbers/{id}/messaging`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/mobile_phone_numbers/550e8400-e29b-41d4-a716-446655440000/messaging\"\n```\n\nReturns: `country_code` (string), `created_at` (date-time), `features` (object), `id` (string), `messaging_product` (string), `messaging_profile_id` (string | null), `organization_id` (string), `phone_number` (string), `record_type` (enum: messaging_phone_number, messaging_settings), `tags` (array[string]), `traffic_type` (string), `type` (enum: longcode), `updated_at` (date-time)\n\n## List phone numbers\n\n`GET /phone_numbers`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/phone_numbers?sort=connection_name&handle_messaging_profile_error=false\"\n```\n\nReturns: `billing_group_id` (string | null), `call_forwarding_enabled` (boolean), `call_recording_enabled` (boolean), `caller_id_name_enabled` (boolean), `cnam_listing_enabled` (boolean), `connection_id` (string | null), `connection_name` (string | null), `country_iso_alpha2` (string), `created_at` (date-time), `customer_reference` (string | null), `deletion_lock_enabled` (boolean), `emergency_address_id` (string | null), `emergency_enabled` (boolean), `emergency_status` (enum: active, deprovisioning, disabled, provisioning, provisioning-failed), `external_pin` (string | null), `hd_voice_enabled` (boolean), `id` (string), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `messaging_profile_id` (string | null), `messaging_profile_name` (string | null), `phone_number` (string), `phone_number_type` (enum: local, toll_free, mobile, national, shared_cost, landline, tollfree, shortcode, longcode), `purchased_at` (string), `record_type` (string), `source_type` (object), `status` (enum: purchase-pending, purchase-failed, port-pending, port-failed, active, deleted, emergency-only, ported-out, port-out-pending, requirement-info-pending, requirement-info-under-review, requirement-info-exception, provision-pending), `t38_fax_gateway_enabled` (boolean), `tags` (array[string]), `updated_at` (string)\n\n## Verify ownership of phone numbers\n\nVerifies ownership of the provided phone numbers and returns a mapping of numbers to their IDs, plus a list of numbers not found in the account.\n\n`POST /phone_numbers/actions/verify_ownership` — Required: `phone_numbers`\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"phone_numbers\": [\n    \"+15551234567\"\n  ]\n}' \\\n  \"https://api.telnyx.com/v2/phone_numbers/actions/verify_ownership\"\n```\n\nReturns: `found` (array[object]), `not_found` (array[string]), `record_type` (string)\n\n## Lists the phone numbers jobs\n\n`GET /phone_numbers/jobs`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/phone_numbers/jobs?sort=created_at\"\n```\n\nReturns: `created_at` (string), `etc` (date-time), `failed_operations` (array[object]), `id` (uuid), `pending_operations` (array[object]), `phone_numbers` (array[object]), `record_type` (string), `status` (enum: pending, in_progress, completed, failed, expired), `successful_operations` (array[object]), `type` (enum: update_emergency_settings, delete_phone_numbers, update_phone_numbers), `updated_at` (string)\n\n## Delete a batch of numbers\n\nCreates a new background job to delete a batch of numbers. At most one thousand numbers can be updated per API call.\n\n`POST /phone_numbers/jobs/delete_phone_numbers` — Required: `phone_numbers`\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"phone_numbers\": [\n    \"+13125550001\"\n  ]\n}' \\\n  \"https://api.telnyx.com/v2/phone_numbers/jobs/delete_phone_numbers\"\n```\n\nReturns: `created_at` (string), `etc` (date-time), `failed_operations` (array[object]), `id` (uuid), `pending_operations` (array[object]), `phone_numbers` (array[object]), `record_type` (string), `status` (enum: pending, in_progress, completed, failed, expired), `successful_operations` (array[object]), `type` (enum: update_emergency_settings, delete_phone_numbers, update_phone_numbers), `updated_at` (string)\n\n## Update the emergency settings from a batch of numbers\n\nCreates a background job to update the emergency settings of a collection of phone numbers. At most one thousand numbers can be updated per API call.\n\n`POST /phone_numbers/jobs/update_emergency_settings` — Required: `emergency_enabled`, `phone_numbers`\n\nOptional: `emergency_address_id` (string | null)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"phone_numbers\": [\n    \"+13125550001\"\n  ],\n  \"emergency_enabled\": true\n}' \\\n  \"https://api.telnyx.com/v2/phone_numbers/jobs/update_emergency_settings\"\n```\n\nReturns: `created_at` (string), `etc` (date-time), `failed_operations` (array[object]), `id` (uuid), `pending_operations` (array[object]), `phone_numbers` (array[object]), `record_type` (string), `status` (enum: pending, in_progress, completed, failed, expired), `successful_operations` (array[object]), `type` (enum: update_emergency_settings, delete_phone_numbers, update_phone_numbers), `updated_at` (string)\n\n## Update a batch of numbers\n\nCreates a new background job to update a batch of numbers. At most one thousand numbers can be updated per API call. At least one of the updateable fields must be submitted.\n\n`POST /phone_numbers/jobs/update_phone_numbers` — Required: `phone_numbers`\n\nOptional: `billing_group_id` (string), `connection_id` (string), `customer_reference` (string), `deletion_lock_enabled` (boolean), `external_pin` (string), `hd_voice_enabled` (boolean), `tags` (array[string]), `voice` (object)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"phone_numbers\": [\n    \"+13125550001\"\n  ]\n}' \\\n  \"https://api.telnyx.com/v2/phone_numbers/jobs/update_phone_numbers\"\n```\n\nReturns: `created_at` (string), `etc` (date-time), `failed_operations` (array[object]), `id` (uuid), `pending_operations` (array[object]), `phone_numbers` (array[object]), `record_type` (string), `status` (enum: pending, in_progress, completed, failed, expired), `successful_operations` (array[object]), `type` (enum: update_emergency_settings, delete_phone_numbers, update_phone_numbers), `updated_at` (string)\n\n## Retrieve a phone numbers job\n\n`GET /phone_numbers/jobs/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/phone_numbers/jobs/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `created_at` (string), `etc` (date-time), `failed_operations` (array[object]), `id` (uuid), `pending_operations` (array[object]), `phone_numbers` (array[object]), `record_type` (string), `status` (enum: pending, in_progress, completed, failed, expired), `successful_operations` (array[object]), `type` (enum: update_emergency_settings, delete_phone_numbers, update_phone_numbers), `updated_at` (string)\n\n## List phone numbers with messaging settings\n\n`GET /phone_numbers/messaging`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/phone_numbers/messaging\"\n```\n\nReturns: `country_code` (string), `created_at` (date-time), `eligible_messaging_products` (array[string]), `features` (object), `health` (object), `id` (string), `messaging_product` (string), `messaging_profile_id` (string | null), `organization_id` (string), `phone_number` (string), `record_type` (enum: messaging_phone_number, messaging_settings), `tags` (array[string]), `traffic_type` (string), `type` (enum: long-code, toll-free, short-code, longcode, tollfree, shortcode), `updated_at` (date-time)\n\n## Slim List phone numbers\n\nList phone numbers, This endpoint is a lighter version of the /phone_numbers endpoint having higher performance and rate limit.\n\n`GET /phone_numbers/slim`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/phone_numbers/slim?sort=connection_name\"\n```\n\nReturns: `billing_group_id` (string), `call_forwarding_enabled` (boolean), `call_recording_enabled` (boolean), `caller_id_name_enabled` (boolean), `cnam_listing_enabled` (boolean), `connection_id` (string), `country_iso_alpha2` (string), `created_at` (string), `customer_reference` (string), `emergency_address_id` (string), `emergency_enabled` (boolean), `emergency_status` (enum: active, deprovisioning, disabled, provisioning, provisioning-failed), `external_pin` (string), `hd_voice_enabled` (boolean), `id` (string), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `phone_number` (string), `phone_number_type` (enum: local, toll_free, mobile, national, shared_cost, landline, tollfree, shortcode, longcode), `purchased_at` (string), `record_type` (string), `status` (enum: purchase-pending, purchase-failed, port-pending, port-failed, active, deleted, emergency-only, ported-out, port-out-pending, requirement-info-pending, requirement-info-under-review, requirement-info-exception, provision-pending), `t38_fax_gateway_enabled` (boolean), `updated_at` (string)\n\n## List phone numbers with voice settings\n\n`GET /phone_numbers/voice`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/phone_numbers/voice?sort=connection_name\"\n```\n\nReturns: `call_forwarding` (object), `call_recording` (object), `cnam_listing` (object), `connection_id` (string), `customer_reference` (string), `emergency` (object), `id` (string), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `media_features` (object), `phone_number` (string), `record_type` (string), `tech_prefix_enabled` (boolean), `translated_number` (string), `usage_payment_method` (enum: pay-per-minute, channel)\n\n## Retrieve a phone number\n\n`GET /phone_numbers/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/phone_numbers/1293384261075731499\"\n```\n\nReturns: `billing_group_id` (string | null), `call_forwarding_enabled` (boolean), `call_recording_enabled` (boolean), `caller_id_name_enabled` (boolean), `cnam_listing_enabled` (boolean), `connection_id` (string | null), `connection_name` (string | null), `country_iso_alpha2` (string), `created_at` (date-time), `customer_reference` (string | null), `deletion_lock_enabled` (boolean), `emergency_address_id` (string | null), `emergency_enabled` (boolean), `emergency_status` (enum: active, deprovisioning, disabled, provisioning, provisioning-failed), `external_pin` (string | null), `hd_voice_enabled` (boolean), `id` (string), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `messaging_profile_id` (string | null), `messaging_profile_name` (string | null), `phone_number` (string), `phone_number_type` (enum: local, toll_free, mobile, national, shared_cost, landline, tollfree, shortcode, longcode), `purchased_at` (string), `record_type` (string), `source_type` (object), `status` (enum: purchase-pending, purchase-failed, port-pending, port-failed, active, deleted, emergency-only, ported-out, port-out-pending, requirement-info-pending, requirement-info-under-review, requirement-info-exception, provision-pending), `t38_fax_gateway_enabled` (boolean), `tags` (array[string]), `updated_at` (string)\n\n## Update a phone number\n\n`PATCH /phone_numbers/{id}`\n\nOptional: `address_id` (string), `billing_group_id` (string), `connection_id` (string), `customer_reference` (string), `external_pin` (string), `hd_voice_enabled` (boolean), `id` (string), `tags` (array[string])\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/phone_numbers/1293384261075731499\"\n```\n\nReturns: `billing_group_id` (string | null), `call_forwarding_enabled` (boolean), `call_recording_enabled` (boolean), `caller_id_name_enabled` (boolean), `cnam_listing_enabled` (boolean), `connection_id` (string | null), `connection_name` (string | null), `country_iso_alpha2` (string), `created_at` (date-time), `customer_reference` (string | null), `deletion_lock_enabled` (boolean), `emergency_address_id` (string | null), `emergency_enabled` (boolean), `emergency_status` (enum: active, deprovisioning, disabled, provisioning, provisioning-failed), `external_pin` (string | null), `hd_voice_enabled` (boolean), `id` (string), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `messaging_profile_id` (string | null), `messaging_profile_name` (string | null), `phone_number` (string), `phone_number_type` (enum: local, toll_free, mobile, national, shared_cost, landline, tollfree, shortcode, longcode), `purchased_at` (string), `record_type` (string), `source_type` (object), `status` (enum: purchase-pending, purchase-failed, port-pending, port-failed, active, deleted, emergency-only, ported-out, port-out-pending, requirement-info-pending, requirement-info-under-review, requirement-info-exception, provision-pending), `t38_fax_gateway_enabled` (boolean), `tags` (array[string]), `updated_at` (string)\n\n## Delete a phone number\n\n`DELETE /phone_numbers/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/phone_numbers/1293384261075731499\"\n```\n\nReturns: `billing_group_id` (string), `call_forwarding_enabled` (boolean), `call_recording_enabled` (boolean), `caller_id_name_enabled` (boolean), `cnam_listing_enabled` (boolean), `connection_id` (string), `connection_name` (string), `created_at` (string), `customer_reference` (string), `deletion_lock_enabled` (boolean), `emergency_address_id` (string), `emergency_enabled` (boolean), `external_pin` (string), `hd_voice_enabled` (boolean), `id` (string), `messaging_profile_id` (string), `messaging_profile_name` (string), `phone_number` (string), `phone_number_type` (enum: local, toll_free, mobile, national, shared_cost, landline), `purchased_at` (string), `record_type` (string), `status` (enum: purchase-pending, purchase-failed, port-pending, port-failed, active, deleted, emergency-only, ported-out, port-out-pending), `t38_fax_gateway_enabled` (boolean), `tags` (array[string]), `updated_at` (string)\n\n## Change the bundle status for a phone number (set to being in a bundle or remove from a bundle)\n\n`PATCH /phone_numbers/{id}/actions/bundle_status_change` — Required: `bundle_id`\n\n```bash\ncurl \\\n  -X PATCH \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"bundle_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}' \\\n  \"https://api.telnyx.com/v2/phone_numbers/1293384261075731499/actions/bundle_status_change\"\n```\n\nReturns: `call_forwarding` (object), `call_recording` (object), `cnam_listing` (object), `connection_id` (string), `customer_reference` (string), `emergency` (object), `id` (string), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `media_features` (object), `phone_number` (string), `record_type` (string), `tech_prefix_enabled` (boolean), `translated_number` (string), `usage_payment_method` (enum: pay-per-minute, channel)\n\n## Enable emergency for a phone number\n\n`POST /phone_numbers/{id}/actions/enable_emergency` — Required: `emergency_enabled`, `emergency_address_id`\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"emergency_enabled\": true,\n  \"emergency_address_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}' \\\n  \"https://api.telnyx.com/v2/phone_numbers/1293384261075731499/actions/enable_emergency\"\n```\n\nReturns: `call_forwarding` (object), `call_recording` (object), `cnam_listing` (object), `connection_id` (string), `customer_reference` (string), `emergency` (object), `id` (string), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `media_features` (object), `phone_number` (string), `record_type` (string), `tech_prefix_enabled` (boolean), `translated_number` (string), `usage_payment_method` (enum: pay-per-minute, channel)\n\n## Retrieve a phone number with messaging settings\n\n`GET /phone_numbers/{id}/messaging`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/phone_numbers/550e8400-e29b-41d4-a716-446655440000/messaging\"\n```\n\nReturns: `country_code` (string), `created_at` (date-time), `eligible_messaging_products` (array[string]), `features` (object), `health` (object), `id` (string), `messaging_product` (string), `messaging_profile_id` (string | null), `organization_id` (string), `phone_number` (string), `record_type` (enum: messaging_phone_number, messaging_settings), `tags` (array[string]), `traffic_type` (string), `type` (enum: long-code, toll-free, short-code, longcode, tollfree, shortcode), `updated_at` (date-time)\n\n## Update the messaging profile and/or messaging product of a phone number\n\n`PATCH /phone_numbers/{id}/messaging`\n\nOptional: `messaging_product` (string), `messaging_profile_id` (string), `tags` (array[string])\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/phone_numbers/550e8400-e29b-41d4-a716-446655440000/messaging\"\n```\n\nReturns: `country_code` (string), `created_at` (date-time), `eligible_messaging_products` (array[string]), `features` (object), `health` (object), `id` (string), `messaging_product` (string), `messaging_profile_id` (string | null), `organization_id` (string), `phone_number` (string), `record_type` (enum: messaging_phone_number, messaging_settings), `tags` (array[string]), `traffic_type` (string), `type` (enum: long-code, toll-free, short-code, longcode, tollfree, shortcode), `updated_at` (date-time)\n\n## Retrieve a phone number with voice settings\n\n`GET /phone_numbers/{id}/voice`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/phone_numbers/1293384261075731499/voice\"\n```\n\nReturns: `call_forwarding` (object), `call_recording` (object), `cnam_listing` (object), `connection_id` (string), `customer_reference` (string), `emergency` (object), `id` (string), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `media_features` (object), `phone_number` (string), `record_type` (string), `tech_prefix_enabled` (boolean), `translated_number` (string), `usage_payment_method` (enum: pay-per-minute, channel)\n\n## Update a phone number with voice settings\n\n`PATCH /phone_numbers/{id}/voice`\n\nOptional: `call_forwarding` (object), `call_recording` (object), `caller_id_name_enabled` (boolean), `cnam_listing` (object), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `media_features` (object), `tech_prefix_enabled` (boolean), `translated_number` (string), `usage_payment_method` (enum: pay-per-minute, channel)\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/phone_numbers/1293384261075731499/voice\"\n```\n\nReturns: `call_forwarding` (object), `call_recording` (object), `cnam_listing` (object), `connection_id` (string), `customer_reference` (string), `emergency` (object), `id` (string), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `media_features` (object), `phone_number` (string), `record_type` (string), `tech_prefix_enabled` (boolean), `translated_number` (string), `usage_payment_method` (enum: pay-per-minute, channel)\n\n## List Mobile Phone Numbers\n\n`GET /v2/mobile_phone_numbers`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/v2/mobile_phone_numbers\"\n```\n\nReturns: `call_forwarding` (object), `call_recording` (object), `caller_id_name_enabled` (boolean), `cnam_listing` (object), `connection_id` (string | null), `connection_name` (string | null), `connection_type` (string | null), `country_iso_alpha2` (string), `created_at` (date-time), `customer_reference` (string | null), `id` (string), `inbound` (object), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `mobile_voice_enabled` (boolean), `noise_suppression` (enum: inbound, outbound, both, disabled), `outbound` (object), `phone_number` (string), `record_type` (string), `sim_card_id` (uuid), `status` (string), `tags` (array[string]), `updated_at` (date-time)\n\n## Retrieve a Mobile Phone Number\n\n`GET /v2/mobile_phone_numbers/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/v2/mobile_phone_numbers/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `call_forwarding` (object), `call_recording` (object), `caller_id_name_enabled` (boolean), `cnam_listing` (object), `connection_id` (string | null), `connection_name` (string | null), `connection_type` (string | null), `country_iso_alpha2` (string), `created_at` (date-time), `customer_reference` (string | null), `id` (string), `inbound` (object), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `mobile_voice_enabled` (boolean), `noise_suppression` (enum: inbound, outbound, both, disabled), `outbound` (object), `phone_number` (string), `record_type` (string), `sim_card_id` (uuid), `status` (string), `tags` (array[string]), `updated_at` (date-time)\n\n## Update a Mobile Phone Number\n\n`PATCH /v2/mobile_phone_numbers/{id}`\n\nOptional: `call_forwarding` (object), `call_recording` (object), `caller_id_name_enabled` (boolean), `cnam_listing` (object), `connection_id` (string | null), `customer_reference` (string | null), `inbound` (object), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `noise_suppression` (boolean), `outbound` (object), `tags` (array[string])\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/v2/mobile_phone_numbers/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `call_forwarding` (object), `call_recording` (object), `caller_id_name_enabled` (boolean), `cnam_listing` (object), `connection_id` (string | null), `connection_name` (string | null), `connection_type` (string | null), `country_iso_alpha2` (string), `created_at` (date-time), `customer_reference` (string | null), `id` (string), `inbound` (object), `inbound_call_screening` (enum: disabled, reject_calls, flag_calls), `mobile_voice_enabled` (boolean), `noise_suppression` (enum: inbound, outbound, both, disabled), `outbound` (object), `phone_number` (string), `record_type` (string), `sim_card_id` (uuid), `status` (string), `tags` (array[string]), `updated_at` (date-time)","tags":["telnyx","numbers","config","curl","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm"],"capabilities":["skill","source-team-telnyx","skill-telnyx-numbers-config-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-numbers-config-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 (25,832 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:42.240Z","embedding":null,"createdAt":"2026-04-18T22:07:07.540Z","updatedAt":"2026-04-22T06:54:42.240Z","lastSeenAt":"2026-04-22T06:54:42.240Z","tsv":"'+13125550001':100,193,270,855,976,1121 '+13125550002':102 '+15551234567':721 '-1':110 '/actions/bundle_status_change':2166 '/actions/enable_emergency':2260 '/messaging':415,2362,2455 '/messaging_numbers_bulk_updates':234,299 '/mobile_phone_numbers':413 '/mobile_phone_numbers/messaging':343 '/phone_numbers':480,1347,1590,1783,2009,2164,2258,2360,2453,2560,2636 '/phone_numbers/actions/verify_ownership':699 '/phone_numbers/jobs':742,1182 '/phone_numbers/jobs/delete_phone_numbers':833 '/phone_numbers/jobs/update_emergency_settings':946 '/phone_numbers/jobs/update_phone_numbers':1072 '/phone_numbers/messaging':1253 '/phone_numbers/slim':1356 '/phone_numbers/voice':1519 '/v2/messages':86 '/v2/messaging_numbers_bulk_updates':273 '/v2/messaging_numbers_bulk_updates/':312 '/v2/mobile_phone_numbers':2759,2863,2968 '/v2/mobile_phone_numbers/550e8400-e29b-41d4-a716-446655440000/messaging':426 '/v2/mobile_phone_numbers/messaging':354 '/v2/phone_numbers/1293384261075731499':1602,1828,2023 '/v2/phone_numbers/1293384261075731499/actions/bundle_status_change':2196 '/v2/phone_numbers/1293384261075731499/actions/enable_emergency':2297 '/v2/phone_numbers/1293384261075731499/voice':2573,2699 '/v2/phone_numbers/550e8400-e29b-41d4-a716-446655440000/messaging':2373,2484 '/v2/phone_numbers/actions/verify_ownership':724 '/v2/phone_numbers/jobs/550e8400-e29b-41d4-a716-446655440000':1194 '/v2/phone_numbers/jobs/delete_phone_numbers':858 '/v2/phone_numbers/jobs/update_emergency_settings':982 '/v2/phone_numbers/jobs/update_phone_numbers':1124 '/v2/phone_numbers/jobs?sort=created_at':753 '/v2/phone_numbers/messaging':1264 '/v2/phone_numbers/slim?sort=connection_name':1367 '/v2/phone_numbers/voice?sort=connection_name':1530 '/v2/phone_numbers?sort=connection_name&handle_messaging_profile_error=false':491 '/v2/v2/mobile_phone_numbers':2770 '/v2/v2/mobile_phone_numbers/550e8400-e29b-41d4-a716-446655440000':2875,3029 '/voice':2562,2638 '1':141 '10':22 '2':120 '401':61,142,159 '403':163 '404':166 '41d4':266,2191,2292 '422':57,124,170 '429':54,133,176 '446655440000':268,2193,2294 '550e8400':263,2188,2289 'a716':267,2192,2293 'account':697 'activ':551,628,1413,1476,1662,1739,1888,1965,2121 'address':541,954,1404,1652,1786,1878,2063,2265,2287 'alpha2':525,1395,1636,1862,2800,2905,3059 'alway':62 'and/or':2445 'api':27,30,38,45,91,148,161,252,308,350,422,487,711,749,830,845,943,966,1059,1111,1190,1260,1363,1526,1598,1819,2019,2178,2275,2369,2475,2569,2690,2766,2871,3020 'api.telnyx.com':85,272,311,353,425,490,723,752,857,981,1123,1193,1263,1366,1529,1601,1827,2022,2195,2296,2372,2483,2572,2698,2769,2874,3028 'api.telnyx.com/v2/messages':84 'api.telnyx.com/v2/messaging_numbers_bulk_updates':271 'api.telnyx.com/v2/messaging_numbers_bulk_updates/':310 'api.telnyx.com/v2/mobile_phone_numbers/550e8400-e29b-41d4-a716-446655440000/messaging':424 'api.telnyx.com/v2/mobile_phone_numbers/messaging':352 'api.telnyx.com/v2/phone_numbers/1293384261075731499':1600,1826,2021 'api.telnyx.com/v2/phone_numbers/1293384261075731499/actions/bundle_status_change':2194 'api.telnyx.com/v2/phone_numbers/1293384261075731499/actions/enable_emergency':2295 'api.telnyx.com/v2/phone_numbers/1293384261075731499/voice':2571,2697 'api.telnyx.com/v2/phone_numbers/550e8400-e29b-41d4-a716-446655440000/messaging':2371,2482 'api.telnyx.com/v2/phone_numbers/actions/verify_ownership':722 'api.telnyx.com/v2/phone_numbers/jobs/550e8400-e29b-41d4-a716-446655440000':1192 'api.telnyx.com/v2/phone_numbers/jobs/delete_phone_numbers':856 'api.telnyx.com/v2/phone_numbers/jobs/update_emergency_settings':980 'api.telnyx.com/v2/phone_numbers/jobs/update_phone_numbers':1122 'api.telnyx.com/v2/phone_numbers/jobs?sort=created_at':751 'api.telnyx.com/v2/phone_numbers/messaging':1262 'api.telnyx.com/v2/phone_numbers/slim?sort=connection_name':1365 'api.telnyx.com/v2/phone_numbers/voice?sort=connection_name':1528 'api.telnyx.com/v2/phone_numbers?sort=connection_name&handle_messaging_profile_error=false':489 'api.telnyx.com/v2/v2/mobile_phone_numbers':2768 'api.telnyx.com/v2/v2/mobile_phone_numbers/550e8400-e29b-41d4-a716-446655440000':2873,3027 'application/json':97,258,717,851,972,1117,1825,2184,2281,2481,2696,3026 'array':276,282,292,317,323,333,391,463,662,727,731,764,770,774,789,869,875,879,894,993,999,1003,1018,1099,1135,1141,1145,1160,1205,1211,1215,1230,1277,1308,1773,1809,1999,2139,2386,2417,2465,2497,2528,2850,2955,3010,3109 'assign':241 'authent':41,59,144 'author':88,249,305,347,419,484,708,746,842,963,1108,1187,1257,1360,1523,1595,1816,2016,2175,2272,2366,2472,2566,2687,2763,2868,3017 'background':813,921,1042 'backoff':182 'bash':24,68,244,302,344,416,481,703,743,837,958,1103,1184,1254,1357,1520,1592,1811,2011,2170,2267,2363,2467,2563,2682,2760,2865,3012 'batch':807,818,916,1036,1047 'bearer':89,250,306,348,420,485,709,747,843,964,1109,1188,1258,1361,1524,1596,1817,2017,2176,2273,2367,2473,2567,2688,2764,2869,3018 'bill':493,1077,1369,1604,1789,1830,2025 'bodi':111,123,154 'boolean':243,501,505,510,514,539,547,565,660,1090,1097,1376,1380,1385,1389,1409,1426,1508,1572,1612,1616,1621,1625,1650,1658,1676,1771,1805,1838,1842,1847,1851,1876,1884,1902,1997,2032,2036,2041,2045,2061,2068,2075,2137,2238,2339,2615,2650,2669,2741,2782,2827,2887,2932,2981,3006,3041,3086 'bulk':228,289,295,330 'bundl':2146,2157,2162,2168,2186 'call':46,498,502,569,574,576,831,944,1060,1373,1377,1430,1435,1437,1532,1535,1552,1557,1559,1609,1613,1680,1685,1687,1835,1839,1906,1911,1913,2029,2033,2198,2201,2218,2223,2225,2299,2302,2319,2324,2326,2575,2578,2595,2600,2602,2640,2643,2655,2660,2662,2701,2704,2721,2726,2728,2772,2775,2816,2821,2823,2877,2880,2921,2926,2928,2971,2974,2996,3001,3003,3031,3034,3075,3080,3082 'caller':506,1381,1617,1843,2037,2646,2778,2883,2977,3037 'card':2844,2949,3103 'case':116 'chang':2144 'channel':1584,2250,2351,2627,2681,2753 'check':69,128,146,173,222 'cnam':511,1386,1538,1622,1848,2042,2204,2305,2581,2651,2707,2783,2888,2982,3042 'code':67,72,81,106,118,153,158,199,357,429,1267,1317,1323,2376,2426,2432,2487,2537,2543 'collect':930 'common':156 'complet':784,889,1013,1155,1225 'config':4,8 'connect':515,519,1081,1390,1541,1626,1630,1793,1852,1856,2046,2049,2207,2308,2584,2710,2786,2790,2794,2891,2895,2899,2985,3045,3049,3053 'content':95,256,715,849,970,1115,1823,2182,2279,2479,2694,3024 'content-typ':94,255,714,848,969,1114,1822,2181,2278,2478,2693,3023 'cost':600,1451,1711,1937,2099 'countri':198,356,428,523,1266,1393,1634,1860,2375,2486,2798,2903,3057 'creat':359,431,527,755,810,860,919,984,1039,1126,1196,1269,1397,1638,1864,2052,2378,2489,2802,2907,3061 'curl':5,9,12,76,245,303,345,417,482,704,744,838,959,1104,1185,1255,1358,1521,1593,1812,2012,2171,2268,2364,2468,2564,2683,2761,2866,3013 'custom':532,1084,1400,1544,1643,1796,1869,2055,2210,2311,2587,2713,2807,2912,2989,3066 'd':98,115,259,718,852,973,1118,2185,2282 'dash':202 'date':362,402,434,474,530,760,865,989,1131,1201,1272,1330,1641,1867,2381,2439,2492,2550,2805,2855,2910,2960,3064,3114 'date-tim':361,401,433,473,529,759,864,988,1130,1200,1271,1329,1640,1866,2380,2438,2491,2549,2804,2854,2909,2959,3063,3113 'delay':139 'delet':536,629,796,805,816,901,1025,1087,1167,1237,1477,1647,1740,1873,1966,2004,2008,2014,2058,2122 'deprovis':552,1414,1663,1889 'disabl':553,572,1415,1433,1555,1664,1683,1890,1909,2221,2322,2598,2658,2724,2819,2834,2924,2939,2999,3078,3093 'e.164':190 'e.g':192 'e29b':265,2190,2291 'e29b-41d4-a716':264,2189,2290 'echo':107,112,121,125,134,143,150 'elig':1274,2383,2494 'emerg':540,545,548,631,794,899,912,926,948,953,977,1023,1165,1235,1403,1407,1410,1479,1547,1651,1656,1659,1742,1877,1882,1885,1968,2062,2066,2124,2213,2252,2262,2264,2283,2286,2314,2590,2716 'emergency-on':630,1478,1741,1967,2123 'enabl':500,504,509,513,538,546,564,659,949,978,1089,1096,1375,1379,1384,1388,1408,1425,1507,1571,1611,1615,1620,1624,1649,1657,1675,1770,1804,1837,1841,1846,1850,1875,1883,1901,1996,2031,2035,2040,2044,2060,2067,2074,2136,2237,2251,2263,2284,2338,2614,2649,2668,2740,2781,2826,2886,2931,2980,3040,3085 'endpoint':207,1340,1348 'enum':286,327,384,397,456,469,550,571,593,615,780,792,885,897,1009,1021,1151,1163,1221,1233,1301,1314,1412,1432,1444,1463,1554,1579,1661,1682,1704,1726,1887,1908,1930,1952,2092,2108,2220,2245,2321,2346,2410,2423,2521,2534,2597,2622,2657,2676,2723,2748,2818,2830,2923,2935,2998,3077,3089 'error':42,51,56,60,64,127,151,157,172 'esac':155 'etc':758,863,987,1129,1199 'exampl':34 'except':652,1500,1763,1989 'expir':786,891,1015,1157,1227 'exponenti':181 'export':25 'extern':558,1091,1420,1669,1799,1895,2069 'fail':48,145,275,316,557,621,627,762,785,867,890,991,1014,1133,1156,1203,1226,1419,1469,1475,1668,1732,1738,1894,1958,1964,2114,2120 'fax':657,1505,1768,1994,2134 'featur':364,436,1279,1561,2227,2328,2388,2499,2604,2664,2730 'field':130,174,1067 'flag':575,1436,1558,1686,1912,2224,2325,2601,2661,2727,2822,2927,3002,3081 'format':132,175,191 'forward':499,1374,1533,1610,1836,2030,2199,2300,2576,2641,2702,2773,2878,2972,3032 'found':169,694,726,730 'free':596,1320,1447,1707,1933,2095,2429,2540 'gateway':658,1506,1769,1995,2135 'get':298,342,412,479,741,1181,1252,1355,1518,1589,2359,2559,2758,2862 'group':494,1078,1370,1605,1790,1831,2026 'h':87,93,248,254,304,346,418,483,707,713,745,841,847,962,968,1107,1113,1186,1256,1359,1522,1594,1815,1821,2015,2174,2180,2271,2277,2365,2471,2477,2565,2686,2692,2762,2867,3016,3022 'handl':43,63 'hd':562,1094,1423,1673,1802,1899,2072 'health':1281,2390,2501 'hello':104 'higher':1350 'http':70,80,105,117,152 'id':238,262,279,301,314,320,366,373,377,414,438,445,449,495,507,516,542,566,579,687,766,871,955,995,1079,1082,1137,1183,1207,1283,1290,1294,1371,1382,1391,1405,1427,1542,1549,1591,1606,1618,1627,1653,1677,1690,1784,1787,1791,1794,1806,1832,1844,1853,1879,1903,1916,2010,2027,2038,2047,2064,2076,2080,2165,2169,2187,2208,2215,2259,2266,2288,2309,2316,2361,2392,2399,2403,2454,2462,2503,2510,2514,2561,2585,2592,2637,2647,2711,2718,2779,2787,2811,2845,2864,2884,2892,2916,2950,2969,2978,2986,3038,3046,3070,3104 'import':183 'inbound':568,1429,1551,1679,1905,2217,2318,2594,2654,2720,2813,2815,2831,2918,2920,2936,2993,2995,3072,3074,3090 'includ':194 'info':642,646,651,1490,1494,1499,1753,1757,1762,1979,1983,1988 'instal':10,16 'insuffici':164 'invalid':160 'iso':524,1394,1635,1861,2799,2904,3058 'job':740,814,922,1043,1180 'key':28,31,39,92,149,162,253,309,351,423,488,712,750,846,967,1112,1191,1261,1364,1527,1599,1820,2020,2179,2276,2370,2476,2570,2691,2767,2872,3021 'landlin':601,1452,1712,1938,2100 'least':1062 'lighter':1343 'limit':53,136,178,1354 'linux':19 'list':206,335,476,512,690,736,1246,1333,1336,1387,1512,1539,1623,1849,2043,2205,2306,2582,2652,2708,2754,2784,2889,2983,3043 'local':594,1445,1705,1931,2093 'lock':537,1088,1648,1874,2059 'long':1316,2425,2536 'long-cod':1315,2424,2535 'longcod':398,470,604,1324,1455,1715,1941,2433,2544 'maco':18 'map':682 'media':1560,2226,2327,2603,2663,2729 'messag':236,260,287,328,340,368,371,385,388,410,440,443,457,460,577,582,1250,1275,1285,1288,1302,1305,1688,1693,1914,1919,2078,2082,2357,2384,2394,2397,2411,2414,2443,2446,2457,2460,2495,2505,2508,2522,2525 'meta.total':223 'method':1578,2244,2345,2621,2675,2747 'minut':1583,2249,2350,2626,2680,2752 'mobil':336,406,597,1448,1708,1934,2096,2755,2824,2859,2929,2964,3083 'must':187,1068 'n':79 'name':508,520,584,1383,1619,1631,1695,1845,1857,1921,2039,2050,2084,2648,2780,2791,2885,2896,2979,3039,3050 'nation':598,1449,1709,1935,2097 'navig':220 'network':50 'new':812,1041 'nois':2828,2933,3004,3087 'note':184 'null':375,447,497,518,522,535,544,561,581,586,957,1292,1608,1629,1633,1646,1655,1672,1692,1697,1834,1855,1859,1872,1881,1898,1918,1923,2401,2512,2789,2793,2797,2810,2894,2898,2902,2915,2988,2992,3048,3052,3056,3069 'number':3,7,186,213,231,239,269,288,329,338,380,387,408,452,459,478,588,591,671,678,684,692,702,720,739,773,798,801,809,820,825,836,854,878,903,906,918,933,938,951,975,1002,1027,1030,1038,1049,1054,1075,1120,1144,1169,1172,1179,1214,1239,1242,1248,1297,1304,1335,1338,1439,1442,1514,1564,1574,1588,1699,1702,1781,1925,1928,2007,2087,2090,2151,2230,2240,2256,2331,2341,2355,2406,2413,2451,2517,2524,2555,2607,2617,2631,2671,2733,2743,2757,2838,2861,2943,2966,3097 'object':365,437,613,728,765,771,775,790,870,876,880,895,994,1000,1004,1019,1102,1136,1142,1146,1161,1206,1212,1216,1231,1280,1282,1534,1537,1540,1548,1562,1724,1950,2200,2203,2206,2214,2228,2301,2304,2307,2315,2329,2389,2391,2500,2502,2577,2580,2583,2591,2605,2642,2645,2653,2665,2703,2706,2709,2717,2731,2774,2777,2785,2814,2836,2879,2882,2890,2919,2941,2973,2976,2984,2994,3008,3033,3036,3044,3073,3095 'one':823,936,1052,1063 'oper':763,769,788,868,874,893,992,998,1017,1134,1140,1159,1204,1210,1229 'option':240,952,1076,1785,2456,2639,2970 'order':278,300,313,319 'organ':376,448,1293,2402,2513 'outbound':2832,2835,2937,2940,3007,3091,3094 'ownership':668,673 'page':212,215,221,224 'pagin':205,209 'paramet':218 'parenthes':204 'patch':1782,1814,2163,2173,2452,2470,2635,2685,2967,3015 'pay':1581,2247,2348,2624,2678,2750 'pay-per-minut':1580,2246,2347,2623,2677,2749 'payment':1577,2243,2344,2620,2674,2746 'pend':281,322,618,624,639,643,655,768,781,873,886,997,1010,1139,1152,1209,1222,1466,1472,1487,1491,1503,1729,1735,1750,1754,1766,1955,1961,1976,1980,1992,2111,2117,2132 'per':829,942,1058,1582,2248,2349,2625,2679,2751 'perform':1351 'permiss':165 'phone':185,230,337,379,386,407,451,458,477,587,590,670,677,701,719,738,772,797,800,835,853,877,902,905,932,950,974,1001,1026,1029,1074,1119,1143,1168,1171,1178,1213,1238,1241,1247,1296,1303,1334,1337,1438,1441,1513,1563,1587,1698,1701,1780,1924,1927,2006,2086,2089,2150,2229,2255,2330,2354,2405,2412,2450,2516,2523,2554,2606,2630,2732,2756,2837,2860,2942,2965,3096 'pin':559,1092,1421,1670,1800,1896,2070 'plus':688 'port':623,626,634,637,1471,1474,1482,1485,1734,1737,1745,1748,1960,1963,1971,1974,2116,2119,2127,2130 'port-fail':625,1473,1736,1962,2118 'port-out-pend':636,1484,1747,1973,2129 'port-pend':622,1470,1733,1959,2115 'ported-out':633,1481,1744,1970,2126 'post':83,233,247,698,706,832,840,945,961,1071,1106,2257,2270 'pre':15 'pre-instal':14 'prefix':196,1570,2236,2337,2613,2667,2739 'product':66,369,441,1276,1286,2385,2395,2447,2458,2496,2506 'profil':232,237,261,372,444,578,583,1289,1689,1694,1915,1920,2079,2083,2398,2444,2461,2509 'progress':783,888,1012,1154,1224 'provid':676 'provis':554,556,654,1416,1418,1502,1665,1667,1765,1891,1893,1991 'provision-pend':653,1501,1764,1990 'provisioning-fail':555,1417,1666,1892 'purchas':605,617,620,1456,1465,1468,1716,1728,1731,1942,1954,1957,2101,2110,2113 'purchase-fail':619,1467,1730,1956,2112 'purchase-pend':616,1464,1727,1953,2109 'queri':217 'rate':52,135,177,1353 'record':284,325,382,454,503,608,733,776,881,1005,1147,1217,1299,1378,1459,1536,1566,1614,1719,1840,1945,2034,2104,2202,2232,2303,2333,2408,2519,2579,2609,2644,2705,2735,2776,2840,2881,2945,2975,3035,3099 'refer':533,1085,1401,1545,1644,1797,1870,2056,2211,2312,2588,2714,2808,2913,2990,3067 'reject':573,1434,1556,1684,1910,2222,2323,2599,2659,2725,2820,2925,3000,3079 'remov':2159 'requir':129,235,641,645,650,700,834,947,1073,1489,1493,1498,1752,1756,1761,1978,1982,1987,2167,2261 'requirement-info-except':649,1497,1760,1986 'requirement-info-pend':640,1488,1751,1977 'requirement-info-under-review':644,1492,1755,1981 'resourc':167 'respons':74,75,108,113,227 'result':210 'retri':137,179 'retriev':294,404,1176,1585,2352,2552,2857 'return':208,274,315,355,427,492,680,725,754,859,983,1125,1195,1265,1368,1531,1603,1829,2024,2197,2298,2374,2485,2574,2700,2771,2876,3030 'review':648,1496,1759,1985 'screen':570,1431,1553,1681,1907,2219,2320,2596,2656,2722,2817,2922,2997,3076 'sed':114 'set':341,389,411,461,795,900,913,927,1024,1166,1236,1251,1306,1517,2152,2358,2415,2526,2558,2634 'setup':23 'share':599,1450,1710,1936,2098 'short':1322,2431,2542 'short-cod':1321,2430,2541 'shortcod':603,1326,1454,1714,1940,2435,2546 'sim':2843,2948,3102 'size':216 'skill' 'skill-telnyx-numbers-config-curl' 'sleep':140 'slim':1332 'sourc':611,1722,1948 'source-team-telnyx' 'space':201 'status':71,297,549,614,779,884,1008,1150,1220,1411,1462,1660,1725,1886,1951,2107,2147,2847,2952,3106 'string':277,283,293,318,324,334,358,367,370,374,378,381,392,395,430,439,442,446,450,453,464,467,496,517,521,526,534,543,560,567,580,585,589,607,610,663,666,732,735,757,778,804,862,883,909,956,986,1007,1033,1080,1083,1086,1093,1100,1128,1149,1175,1198,1219,1245,1268,1278,1284,1287,1291,1295,1298,1309,1312,1372,1392,1396,1399,1402,1406,1422,1428,1440,1458,1461,1511,1543,1546,1550,1565,1568,1575,1607,1628,1632,1637,1645,1654,1671,1678,1691,1696,1700,1718,1721,1774,1777,1788,1792,1795,1798,1801,1807,1810,1833,1854,1858,1863,1871,1880,1897,1904,1917,1922,1926,1944,1947,2000,2003,2028,2048,2051,2054,2057,2065,2071,2077,2081,2085,2088,2103,2106,2140,2143,2209,2212,2216,2231,2234,2241,2310,2313,2317,2332,2335,2342,2377,2387,2393,2396,2400,2404,2407,2418,2421,2459,2463,2466,2488,2498,2504,2507,2511,2515,2518,2529,2532,2586,2589,2593,2608,2611,2618,2672,2712,2715,2719,2734,2737,2744,2788,2792,2796,2801,2809,2812,2839,2842,2848,2851,2893,2897,2901,2906,2914,2917,2944,2947,2953,2956,2987,2991,3011,3047,3051,3055,3060,3068,3071,3098,3101,3107,3110 'submit':1070 'success':122,291,332,787,892,1016,1158,1228 'suppress':2829,2934,3005,3088 't38':656,1504,1767,1993,2133 'tag':390,462,661,1098,1307,1772,1808,1998,2138,2416,2464,2527,2849,2954,3009,3108 'tail':109 'tech':1569,2235,2336,2612,2666,2738 'telnyx':2,6,26,37,90,147,251,307,349,421,486,710,748,844,965,1110,1189,1259,1362,1525,1597,1818,2018,2177,2274,2368,2474,2568,2689,2765,2870,3019 'telnyx-numbers-config-curl':1 'text':11,103 'thousand':824,937,1053 'time':363,403,435,475,531,761,866,990,1132,1202,1273,1331,1642,1868,2382,2440,2493,2551,2806,2856,2911,2961,3065,3115 'toll':595,1319,1446,1706,1932,2094,2428,2539 'toll-fre':1318,2427,2538 'tollfre':602,1325,1453,1713,1939,2434,2545 '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' 'traffic':393,465,1310,2419,2530 'translat':1573,2239,2340,2616,2670,2742 'true':979,2285 'type':96,257,285,326,383,394,396,455,466,468,592,609,612,716,734,777,791,850,882,896,971,1006,1020,1116,1148,1162,1218,1232,1300,1311,1313,1443,1460,1567,1703,1720,1723,1824,1929,1946,1949,2091,2105,2183,2233,2280,2334,2409,2420,2422,2480,2520,2531,2533,2610,2695,2736,2795,2841,2900,2946,3025,3054,3100 'updat':229,290,296,331,399,471,664,793,799,802,828,898,904,907,910,924,941,1022,1028,1031,1034,1045,1057,1066,1164,1170,1173,1234,1240,1243,1327,1509,1775,1778,2001,2141,2436,2441,2547,2628,2852,2957,2962,3111 'usag':1576,2242,2343,2619,2673,2745 'use':36,211 'uuid':280,321,767,872,996,1138,1208,2846,2951,3105 'valid':55,126,171 'verifi':667,672 'version':1344 'voic':563,1095,1101,1424,1516,1674,1803,1900,2073,2557,2633,2825,2930,3084 'w':78 'window':21 'x':82,246,705,839,960,1105,1813,2013,2172,2269,2469,2684,3014","prices":[{"id":"124bf744-491c-42f9-a3bf-267b7d7b5b8b","listingId":"0a78574f-bc84-43e8-a5fc-0702a99f7ea4","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:07.540Z"}],"sources":[{"listingId":"0a78574f-bc84-43e8-a5fc-0702a99f7ea4","source":"github","sourceId":"team-telnyx/ai/telnyx-numbers-config-curl","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-numbers-config-curl","isPrimary":false,"firstSeenAt":"2026-04-18T22:07:07.540Z","lastSeenAt":"2026-04-22T06:54:42.240Z"}],"details":{"listingId":"0a78574f-bc84-43e8-a5fc-0702a99f7ea4","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-numbers-config-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":"6ecb7bd7f0284fb0616fdcecace07bfac0075769","skill_md_path":"skills/telnyx-numbers-config-curl/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-numbers-config-curl"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-numbers-config-curl","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-numbers-config-curl"},"updatedAt":"2026-04-22T06:54:42.240Z"}}