{"id":"a54bd139-4dd5-4ad3-a5ce-882460aec347","shortId":"nweary","kind":"skill","title":"telnyx-porting-in-curl","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Porting In - 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## Run a portability check\n\nRuns a portability check, returning the results immediately.\n\n`POST /portability_checks`\n\nOptional: `phone_numbers` (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      \"phone_numbers\": [\n          \"+18005550101\"\n      ]\n  }' \\\n  \"https://api.telnyx.com/v2/portability_checks\"\n```\n\nReturns: `fast_portable` (boolean), `not_portable_reason` (string), `phone_number` (string), `portable` (boolean), `record_type` (string)\n\n## List all porting events\n\nReturns a list of all porting events.\n\n`GET /porting/events`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting/events\"\n```\n\nReturns: `available_notification_methods` (array[string]), `event_type` (enum: porting_order.deleted), `id` (uuid), `payload` (object), `payload_status` (enum: created, completed), `porting_order_id` (uuid)\n\n## Show a porting event\n\nShow a specific porting event.\n\n`GET /porting/events/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting/events/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `available_notification_methods` (array[string]), `event_type` (enum: porting_order.deleted), `id` (uuid), `payload` (object), `payload_status` (enum: created, completed), `porting_order_id` (uuid)\n\n## Republish a porting event\n\nRepublish a specific porting event.\n\n`POST /porting/events/{id}/republish`\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/porting/events/550e8400-e29b-41d4-a716-446655440000/republish\"\n```\n\n## List LOA configurations\n\nList the LOA configurations.\n\n`GET /porting/loa_configurations`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting/loa_configurations\"\n```\n\nReturns: `address` (object), `company_name` (string), `contact` (object), `created_at` (date-time), `id` (uuid), `logo` (object), `name` (string), `organization_id` (string), `record_type` (string), `updated_at` (date-time)\n\n## Create a LOA configuration\n\nCreate a LOA configuration.\n\n`POST /porting/loa_configurations`\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/porting/loa_configurations\"\n```\n\nReturns: `address` (object), `company_name` (string), `contact` (object), `created_at` (date-time), `id` (uuid), `logo` (object), `name` (string), `organization_id` (string), `record_type` (string), `updated_at` (date-time)\n\n## Preview the LOA configuration parameters\n\nPreview the LOA template that would be generated without need to create LOA configuration.\n\n`POST /porting/loa_configurations/preview`\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/porting/loa_configurations/preview\"\n```\n\n## Retrieve a LOA configuration\n\nRetrieve a specific LOA configuration.\n\n`GET /porting/loa_configurations/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting/loa_configurations/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `address` (object), `company_name` (string), `contact` (object), `created_at` (date-time), `id` (uuid), `logo` (object), `name` (string), `organization_id` (string), `record_type` (string), `updated_at` (date-time)\n\n## Update a LOA configuration\n\nUpdate a specific LOA configuration.\n\n`PATCH /porting/loa_configurations/{id}`\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/porting/loa_configurations/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `address` (object), `company_name` (string), `contact` (object), `created_at` (date-time), `id` (uuid), `logo` (object), `name` (string), `organization_id` (string), `record_type` (string), `updated_at` (date-time)\n\n## Delete a LOA configuration\n\nDelete a specific LOA configuration.\n\n`DELETE /porting/loa_configurations/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/porting/loa_configurations/550e8400-e29b-41d4-a716-446655440000\"\n```\n\n## Preview a LOA configuration\n\nPreview a specific LOA configuration.\n\n`GET /porting/loa_configurations/{id}/preview`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting/loa_configurations/550e8400-e29b-41d4-a716-446655440000/preview\"\n```\n\n## List porting related reports\n\nList the reports generated about porting operations.\n\n`GET /porting/reports`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting/reports\"\n```\n\nReturns: `created_at` (date-time), `document_id` (uuid), `id` (uuid), `params` (object), `record_type` (string), `report_type` (enum: export_porting_orders_csv), `status` (enum: pending, completed), `updated_at` (date-time)\n\n## Create a porting related report\n\nGenerate reports about porting operations.\n\n`POST /porting/reports`\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/porting/reports\"\n```\n\nReturns: `created_at` (date-time), `document_id` (uuid), `id` (uuid), `params` (object), `record_type` (string), `report_type` (enum: export_porting_orders_csv), `status` (enum: pending, completed), `updated_at` (date-time)\n\n## Retrieve a report\n\nRetrieve a specific report generated.\n\n`GET /porting/reports/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting/reports/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `created_at` (date-time), `document_id` (uuid), `id` (uuid), `params` (object), `record_type` (string), `report_type` (enum: export_porting_orders_csv), `status` (enum: pending, completed), `updated_at` (date-time)\n\n## List available carriers in the UK\n\nList available carriers in the UK.\n\n`GET /porting/uk_carriers`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting/uk_carriers\"\n```\n\nReturns: `alternative_cupids` (array[string]), `created_at` (date-time), `cupid` (string), `id` (uuid), `name` (string), `record_type` (string), `updated_at` (date-time)\n\n## List all porting orders\n\nReturns a list of your porting order.\n\n`GET /porting_orders`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders\"\n```\n\nReturns: `activation_settings` (object), `additional_steps` (array[string]), `created_at` (date-time), `customer_group_reference` (string | null), `customer_reference` (string | null), `description` (string), `documents` (object), `end_user` (object), `id` (uuid), `messaging` (object), `misc` (object), `old_service_provider_ocn` (string), `parent_support_key` (string | null), `phone_number_configuration` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `phone_numbers` (array[object]), `porting_phone_numbers_count` (integer), `record_type` (string), `requirements` (array[object]), `requirements_met` (boolean), `status` (object), `support_key` (string | null), `updated_at` (date-time), `user_feedback` (object), `user_id` (uuid), `webhook_url` (uri)\n\n## Create a porting order\n\nCreates a new porting order object.\n\n`POST /porting_orders` — Required: `phone_numbers`\n\nOptional: `customer_group_reference` (string), `customer_reference` (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    \"+13035550000\",\n    \"+13035550001\",\n    \"+13035550002\"\n  ]\n}' \\\n  \"https://api.telnyx.com/v2/porting_orders\"\n```\n\nReturns: `activation_settings` (object), `additional_steps` (array[string]), `created_at` (date-time), `customer_group_reference` (string | null), `customer_reference` (string | null), `description` (string), `documents` (object), `end_user` (object), `id` (uuid), `messaging` (object), `misc` (object), `old_service_provider_ocn` (string), `parent_support_key` (string | null), `phone_number_configuration` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `phone_numbers` (array[object]), `porting_phone_numbers_count` (integer), `record_type` (string), `requirements` (array[object]), `requirements_met` (boolean), `status` (object), `support_key` (string | null), `updated_at` (date-time), `user_feedback` (object), `user_id` (uuid), `webhook_url` (uri)\n\n## List all exception types\n\nReturns a list of all possible exception types for a porting order.\n\n`GET /porting_orders/exception_types`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/exception_types\"\n```\n\nReturns: `code` (enum: ACCOUNT_NUMBER_MISMATCH, AUTH_PERSON_MISMATCH, BTN_ATN_MISMATCH, ENTITY_NAME_MISMATCH, FOC_EXPIRED, FOC_REJECTED, LOCATION_MISMATCH, LSR_PENDING, MAIN_BTN_PORTING, OSP_IRRESPONSIVE, OTHER, PASSCODE_PIN_INVALID, PHONE_NUMBER_HAS_SPECIAL_FEATURE, PHONE_NUMBER_MISMATCH, PHONE_NUMBER_NOT_PORTABLE, PORT_TYPE_INCORRECT, PORTING_ORDER_SPLIT_REQUIRED, POSTAL_CODE_MISMATCH, RATE_CENTER_NOT_PORTABLE, SV_CONFLICT, SV_UNKNOWN_FAILURE), `description` (string)\n\n## List all phone number configurations\n\nReturns a list of phone number configurations paginated.\n\n`GET /porting_orders/phone_number_configurations`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/phone_number_configurations\"\n```\n\nReturns: `created_at` (date-time), `id` (uuid), `porting_phone_number_id` (uuid), `record_type` (string), `updated_at` (date-time), `user_bundle_id` (uuid)\n\n## Create a list of phone number configurations\n\nCreates a list of phone number configurations.\n\n`POST /porting_orders/phone_number_configurations`\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/porting_orders/phone_number_configurations\"\n```\n\nReturns: `created_at` (date-time), `id` (uuid), `porting_phone_number_id` (uuid), `record_type` (string), `updated_at` (date-time), `user_bundle_id` (uuid)\n\n## Retrieve a porting order\n\nRetrieves the details of an existing porting order.\n\n`GET /porting_orders/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `activation_settings` (object), `additional_steps` (array[string]), `created_at` (date-time), `customer_group_reference` (string | null), `customer_reference` (string | null), `description` (string), `documents` (object), `end_user` (object), `id` (uuid), `messaging` (object), `misc` (object), `old_service_provider_ocn` (string), `parent_support_key` (string | null), `phone_number_configuration` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `phone_numbers` (array[object]), `porting_phone_numbers_count` (integer), `record_type` (string), `requirements` (array[object]), `requirements_met` (boolean), `status` (object), `support_key` (string | null), `updated_at` (date-time), `user_feedback` (object), `user_id` (uuid), `webhook_url` (uri)\n\n## Edit a porting order\n\nEdits the details of an existing porting order. Any or all of a porting orders attributes may be included in the resource object included in a PATCH request. If a request does not include all of the attributes for a resource, the system will interpret the missing attributes as if they were included with their current values.\n\n`PATCH /porting_orders/{id}`\n\nOptional: `activation_settings` (object), `customer_group_reference` (string), `customer_reference` (string), `documents` (object), `end_user` (object), `messaging` (object), `misc` (object), `phone_number_configuration` (object), `requirement_group_id` (uuid), `requirements` (array[object]), `user_feedback` (object), `webhook_url` (uri)\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/porting_orders/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `activation_settings` (object), `additional_steps` (array[string]), `created_at` (date-time), `customer_group_reference` (string | null), `customer_reference` (string | null), `description` (string), `documents` (object), `end_user` (object), `id` (uuid), `messaging` (object), `misc` (object), `old_service_provider_ocn` (string), `parent_support_key` (string | null), `phone_number_configuration` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `phone_numbers` (array[object]), `porting_phone_numbers_count` (integer), `record_type` (string), `requirements` (array[object]), `requirements_met` (boolean), `status` (object), `support_key` (string | null), `updated_at` (date-time), `user_feedback` (object), `user_id` (uuid), `webhook_url` (uri)\n\n## Delete a porting order\n\nDeletes an existing porting order. This operation is restrict to porting orders in draft state.\n\n`DELETE /porting_orders/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000\"\n```\n\n## Activate every number in a porting order asynchronously.\n\nActivate each number in a porting order asynchronously. This operation is limited to US FastPort orders only.\n\n`POST /porting_orders/{id}/actions/activate`\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/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/activate\"\n```\n\nReturns: `activate_at` (date-time), `activation_type` (enum: scheduled, on-demand), `activation_windows` (array[object]), `created_at` (date-time), `id` (uuid), `record_type` (string), `status` (enum: created, in-process, completed, failed), `updated_at` (date-time)\n\n## Cancel a porting order\n\n`POST /porting_orders/{id}/actions/cancel`\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/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/cancel\"\n```\n\nReturns: `activation_settings` (object), `additional_steps` (array[string]), `created_at` (date-time), `customer_group_reference` (string | null), `customer_reference` (string | null), `description` (string), `documents` (object), `end_user` (object), `id` (uuid), `messaging` (object), `misc` (object), `old_service_provider_ocn` (string), `parent_support_key` (string | null), `phone_number_configuration` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `phone_numbers` (array[object]), `porting_phone_numbers_count` (integer), `record_type` (string), `requirements` (array[object]), `requirements_met` (boolean), `status` (object), `support_key` (string | null), `updated_at` (date-time), `user_feedback` (object), `user_id` (uuid), `webhook_url` (uri)\n\n## Submit a porting order.\n\nConfirm and submit your porting order.\n\n`POST /porting_orders/{id}/actions/confirm`\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/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/confirm\"\n```\n\nReturns: `activation_settings` (object), `additional_steps` (array[string]), `created_at` (date-time), `customer_group_reference` (string | null), `customer_reference` (string | null), `description` (string), `documents` (object), `end_user` (object), `id` (uuid), `messaging` (object), `misc` (object), `old_service_provider_ocn` (string), `parent_support_key` (string | null), `phone_number_configuration` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `phone_numbers` (array[object]), `porting_phone_numbers_count` (integer), `record_type` (string), `requirements` (array[object]), `requirements_met` (boolean), `status` (object), `support_key` (string | null), `updated_at` (date-time), `user_feedback` (object), `user_id` (uuid), `webhook_url` (uri)\n\n## Share a porting order\n\nCreates a sharing token for a porting order. The token can be used to share the porting order with non-Telnyx users.\n\n`POST /porting_orders/{id}/actions/share`\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/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/share\"\n```\n\nReturns: `created_at` (date-time), `expires_at` (date-time), `expires_in_seconds` (integer), `id` (uuid), `permissions` (array[string]), `porting_order_id` (uuid), `record_type` (string), `token` (string)\n\n## List all porting activation jobs\n\nReturns a list of your porting activation jobs.\n\n`GET /porting_orders/{id}/activation_jobs`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/activation_jobs\"\n```\n\nReturns: `activate_at` (date-time), `activation_type` (enum: scheduled, on-demand), `activation_windows` (array[object]), `created_at` (date-time), `id` (uuid), `record_type` (string), `status` (enum: created, in-process, completed, failed), `updated_at` (date-time)\n\n## Retrieve a porting activation job\n\nReturns a porting activation job.\n\n`GET /porting_orders/{id}/activation_jobs/{activationJobId}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/activation_jobs/{activationJobId}\"\n```\n\nReturns: `activate_at` (date-time), `activation_type` (enum: scheduled, on-demand), `activation_windows` (array[object]), `created_at` (date-time), `id` (uuid), `record_type` (string), `status` (enum: created, in-process, completed, failed), `updated_at` (date-time)\n\n## Update a porting activation job\n\nUpdates the activation time of a porting activation job.\n\n`PATCH /porting_orders/{id}/activation_jobs/{activationJobId}`\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/porting_orders/550e8400-e29b-41d4-a716-446655440000/activation_jobs/{activationJobId}\"\n```\n\nReturns: `activate_at` (date-time), `activation_type` (enum: scheduled, on-demand), `activation_windows` (array[object]), `created_at` (date-time), `id` (uuid), `record_type` (string), `status` (enum: created, in-process, completed, failed), `updated_at` (date-time)\n\n## List additional documents\n\nReturns a list of additional documents for a porting order.\n\n`GET /porting_orders/{id}/additional_documents`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/additional_documents\"\n```\n\nReturns: `content_type` (string), `created_at` (date-time), `document_id` (uuid), `document_type` (enum: loa, invoice, csr, other), `filename` (string), `id` (uuid), `porting_order_id` (uuid), `record_type` (string), `updated_at` (date-time)\n\n## Create a list of additional documents\n\nCreates a list of additional documents for a porting order.\n\n`POST /porting_orders/{id}/additional_documents`\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/porting_orders/550e8400-e29b-41d4-a716-446655440000/additional_documents\"\n```\n\nReturns: `content_type` (string), `created_at` (date-time), `document_id` (uuid), `document_type` (enum: loa, invoice, csr, other), `filename` (string), `id` (uuid), `porting_order_id` (uuid), `record_type` (string), `updated_at` (date-time)\n\n## Delete an additional document\n\nDeletes an additional document for a porting order.\n\n`DELETE /porting_orders/{id}/additional_documents/{additional_document_id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/additional_documents/{additional_document_id}\"\n```\n\n## List allowed FOC dates\n\nReturns a list of allowed FOC dates for a porting order.\n\n`GET /porting_orders/{id}/allowed_foc_windows`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/allowed_foc_windows\"\n```\n\nReturns: `ended_at` (date-time), `record_type` (string), `started_at` (date-time)\n\n## List all comments of a porting order\n\nReturns a list of all comments of a porting order.\n\n`GET /porting_orders/{id}/comments`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/comments\"\n```\n\nReturns: `body` (string), `created_at` (date-time), `id` (uuid), `porting_order_id` (uuid), `record_type` (string), `user_type` (enum: admin, user, system)\n\n## Create a comment for a porting order\n\nCreates a new comment for a porting order.\n\n`POST /porting_orders/{id}/comments`\n\nOptional: `body` (string)\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/porting_orders/550e8400-e29b-41d4-a716-446655440000/comments\"\n```\n\nReturns: `body` (string), `created_at` (date-time), `id` (uuid), `porting_order_id` (uuid), `record_type` (string), `user_type` (enum: admin, user, system)\n\n## Download a porting order loa template\n\n`GET /porting_orders/{id}/loa_template`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/loa_template?loa_configuration_id=a36c2277-446b-4d11-b4ea-322e02a5c08d\"\n```\n\n## List porting order requirements\n\nReturns a list of all requirements based on country/number type for this porting order.\n\n`GET /porting_orders/{id}/requirements`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/requirements\"\n```\n\nReturns: `field_type` (enum: document, textual), `field_value` (string), `record_type` (string), `requirement_status` (string), `requirement_type` (object)\n\n## Retrieve the associated V1 sub_request_id and port_request_id\n\n`GET /porting_orders/{id}/sub_request`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/sub_request\"\n```\n\nReturns: `port_request_id` (string), `sub_request_id` (string)\n\n## List verification codes\n\nReturns a list of verification codes for a porting order.\n\n`GET /porting_orders/{id}/verification_codes`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/verification_codes\"\n```\n\nReturns: `created_at` (date-time), `id` (uuid), `phone_number` (string), `porting_order_id` (uuid), `record_type` (string), `updated_at` (date-time), `verified` (boolean)\n\n## Send the verification codes\n\nSend the verification code for all porting phone numbers.\n\n`POST /porting_orders/{id}/verification_codes/send`\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/porting_orders/550e8400-e29b-41d4-a716-446655440000/verification_codes/send\"\n```\n\n## Verify the verification code for a list of phone numbers\n\nVerifies the verification code for a list of phone numbers.\n\n`POST /porting_orders/{id}/verification_codes/verify`\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/porting_orders/550e8400-e29b-41d4-a716-446655440000/verification_codes/verify\"\n```\n\nReturns: `created_at` (date-time), `id` (uuid), `phone_number` (string), `porting_order_id` (uuid), `record_type` (string), `updated_at` (date-time), `verified` (boolean)\n\n## List action requirements for a porting order\n\nReturns a list of action requirements for a specific porting order.\n\n`GET /porting_orders/{porting_order_id}/action_requirements`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/{porting_order_id}/action_requirements\"\n```\n\nReturns: `action_type` (string), `action_url` (string | null), `cancel_reason` (string | null), `created_at` (date-time), `id` (string), `porting_order_id` (string), `record_type` (enum: porting_action_requirement), `requirement_type_id` (string), `status` (enum: created, pending, completed, cancelled, failed), `updated_at` (date-time)\n\n## Initiate an action requirement\n\nInitiates a specific action requirement for a porting order.\n\n`POST /porting_orders/{porting_order_id}/action_requirements/{id}/initiate`\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/porting_orders/{porting_order_id}/action_requirements/550e8400-e29b-41d4-a716-446655440000/initiate\"\n```\n\nReturns: `action_type` (string), `action_url` (string | null), `cancel_reason` (string | null), `created_at` (date-time), `id` (string), `porting_order_id` (string), `record_type` (enum: porting_action_requirement), `requirement_type_id` (string), `status` (enum: created, pending, completed, cancelled, failed), `updated_at` (date-time)\n\n## List all associated phone numbers\n\nReturns a list of all associated phone numbers for a porting order. Associated phone numbers are used for partial porting in GB to specify which phone numbers should be kept or disconnected.\n\n`GET /porting_orders/{porting_order_id}/associated_phone_numbers`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/{porting_order_id}/associated_phone_numbers\"\n```\n\nReturns: `action` (enum: keep, disconnect), `country_code` (string), `created_at` (date-time), `id` (uuid), `phone_number_range` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `porting_order_id` (uuid), `record_type` (string), `updated_at` (date-time)\n\n## Create an associated phone number\n\nCreates a new associated phone number for a porting order. This is used for partial porting in GB to specify which phone numbers should be kept or disconnected.\n\n`POST /porting_orders/{porting_order_id}/associated_phone_numbers`\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/porting_orders/{porting_order_id}/associated_phone_numbers\"\n```\n\nReturns: `action` (enum: keep, disconnect), `country_code` (string), `created_at` (date-time), `id` (uuid), `phone_number_range` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `porting_order_id` (uuid), `record_type` (string), `updated_at` (date-time)\n\n## Delete an associated phone number\n\nDeletes an associated phone number from a porting order.\n\n`DELETE /porting_orders/{porting_order_id}/associated_phone_numbers/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/porting_orders/{porting_order_id}/associated_phone_numbers/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `action` (enum: keep, disconnect), `country_code` (string), `created_at` (date-time), `id` (uuid), `phone_number_range` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `porting_order_id` (uuid), `record_type` (string), `updated_at` (date-time)\n\n## List all phone number blocks\n\nReturns a list of all phone number blocks of a porting order.\n\n`GET /porting_orders/{porting_order_id}/phone_number_blocks`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/{porting_order_id}/phone_number_blocks\"\n```\n\nReturns: `activation_ranges` (array[object]), `country_code` (string), `created_at` (date-time), `id` (uuid), `phone_number_range` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `record_type` (string), `updated_at` (date-time)\n\n## Create a phone number block\n\nCreates a new phone number block.\n\n`POST /porting_orders/{porting_order_id}/phone_number_blocks`\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/porting_orders/{porting_order_id}/phone_number_blocks\"\n```\n\nReturns: `activation_ranges` (array[object]), `country_code` (string), `created_at` (date-time), `id` (uuid), `phone_number_range` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `record_type` (string), `updated_at` (date-time)\n\n## Delete a phone number block\n\nDeletes a phone number block.\n\n`DELETE /porting_orders/{porting_order_id}/phone_number_blocks/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/porting_orders/{porting_order_id}/phone_number_blocks/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `activation_ranges` (array[object]), `country_code` (string), `created_at` (date-time), `id` (uuid), `phone_number_range` (object), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `record_type` (string), `updated_at` (date-time)\n\n## List all phone number extensions\n\nReturns a list of all phone number extensions of a porting order.\n\n`GET /porting_orders/{porting_order_id}/phone_number_extensions`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_orders/{porting_order_id}/phone_number_extensions\"\n```\n\nReturns: `activation_ranges` (array[object]), `created_at` (date-time), `extension_range` (object), `id` (uuid), `porting_phone_number_id` (uuid), `record_type` (string), `updated_at` (date-time)\n\n## Create a phone number extension\n\nCreates a new phone number extension.\n\n`POST /porting_orders/{porting_order_id}/phone_number_extensions`\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/porting_orders/{porting_order_id}/phone_number_extensions\"\n```\n\nReturns: `activation_ranges` (array[object]), `created_at` (date-time), `extension_range` (object), `id` (uuid), `porting_phone_number_id` (uuid), `record_type` (string), `updated_at` (date-time)\n\n## Delete a phone number extension\n\nDeletes a phone number extension.\n\n`DELETE /porting_orders/{porting_order_id}/phone_number_extensions/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/porting_orders/{porting_order_id}/phone_number_extensions/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `activation_ranges` (array[object]), `created_at` (date-time), `extension_range` (object), `id` (uuid), `porting_phone_number_id` (uuid), `record_type` (string), `updated_at` (date-time)\n\n## List all porting phone numbers\n\nReturns a list of your porting phone numbers.\n\n`GET /porting_phone_numbers`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/porting_phone_numbers\"\n```\n\nReturns: `activation_status` (enum: New, Pending, Conflict, Cancel Pending, Failed, Concurred, Activate RDY, Disconnect Pending, Concurrence Sent, Old, Sending, Active, Cancelled), `phone_number` (string), `phone_number_type` (enum: landline, local, mobile, national, shared_cost, toll_free), `portability_status` (enum: pending, confirmed, provisional), `porting_order_id` (uuid), `porting_order_status` (enum: draft, in-process, submitted, exception, foc-date-confirmed, cancel-pending, ported, cancelled), `record_type` (string), `requirements_status` (enum: requirement-info-pending, requirement-info-under-review, requirement-info-exception, approved), `support_key` (string)","tags":["telnyx","porting","curl","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk"],"capabilities":["skill","source-team-telnyx","skill-telnyx-porting-in-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-porting-in-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 (33,763 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:45.079Z","embedding":null,"createdAt":"2026-04-18T22:07:27.623Z","updatedAt":"2026-04-22T06:54:45.079Z","lastSeenAt":"2026-04-22T06:54:45.079Z","tsv":"'+13035550000':1104 '+13035550001':1105 '+13035550002':1106 '+13125550001':100,193 '+13125550002':102 '+18005550101':265 '-1':110 '/action_requirements':3043,3058,3122 '/action_requirements/550e8400-e29b-41d4-a716-446655440000/initiate':3146 '/actions/activate':1819 '/actions/cancel':1885 '/actions/confirm':2016 '/actions/share':2164 '/activation_jobs':2228,2293,2364 '/additional_documents':2441,2507,2576 '/allowed_foc_windows':2614 '/associated_phone_numbers':3234,3249,3331,3353,3416 '/associated_phone_numbers/550e8400-e29b-41d4-a716-446655440000':3434 '/comments':2660,2713 '/initiate':3124 '/loa_template':2767 '/phone_number_blocks':3500,3515,3571,3593,3648 '/phone_number_blocks/550e8400-e29b-41d4-a716-446655440000':3666 '/phone_number_extensions':3728,3743,3788,3810,3854 '/phone_number_extensions/550e8400-e29b-41d4-a716-446655440000':3872 '/portability_checks':241 '/porting/events':297,342,388 '/porting/loa_configurations':417,468,566,619,679,704 '/porting/loa_configurations/preview':537 '/porting/reports':730,785,845 '/porting/uk_carriers':903 '/porting_orders':951,1073,1426,1600,1776,1817,1883,2014,2162,2226,2291,2362,2439,2505,2574,2612,2658,2711,2765,2798,2842,2879,2932,2974,3039,3118,3230,3327,3412,3496,3567,3644,3724,3784,3850 '/porting_orders/exception_types':1226 '/porting_orders/phone_number_configurations':1317,1369 '/porting_phone_numbers':3915 '/preview':706 '/republish':390 '/requirements':2800 '/sub_request':2844 '/v2/messages':86 '/v2/portability_checks':268 '/v2/porting/events':308 '/v2/porting/events/550e8400-e29b-41d4-a716-446655440000':354 '/v2/porting/events/550e8400-e29b-41d4-a716-446655440000/republish':408 '/v2/porting/loa_configurations':428,486 '/v2/porting/loa_configurations/550e8400-e29b-41d4-a716-446655440000':578,638,693 '/v2/porting/loa_configurations/550e8400-e29b-41d4-a716-446655440000/preview':717 '/v2/porting/loa_configurations/preview':555 '/v2/porting/reports':741,803 '/v2/porting/reports/550e8400-e29b-41d4-a716-446655440000':857 '/v2/porting/uk_carriers':914 '/v2/porting_orders':962,1109 '/v2/porting_orders/':3054,3142,3245,3349,3430,3511,3589,3662,3739,3806,3868 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000':1438,1656,1790 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/activate':1837 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/cancel':1903 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/confirm':2034 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/share':2182 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/activation_jobs':2239 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/activation_jobs/':2305,2383 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/additional_documents':2452,2525 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/additional_documents/':2592 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/allowed_foc_windows':2625 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/comments':2671,2734 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/loa_template?loa_configuration_id=a36c2277-446b-4d11-b4ea-322e02a5c08d':2778 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/requirements':2811 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/sub_request':2855 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/verification_codes':2892 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/verification_codes/send':2952 '/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/verification_codes/verify':2994 '/v2/porting_orders/exception_types':1237 '/v2/porting_orders/phone_number_configurations':1328,1387 '/v2/porting_phone_numbers':3926 '/verification_codes':2881 '/verification_codes/send':2934 '/verification_codes/verify':2976 '1':141 '10':22 '2':120 '401':61,142,159 '403':163 '404':166 '422':57,124,170 '429':54,133,176 'account':1241 'action':3021,3031,3060,3063,3086,3106,3111,3148,3151,3174,3251,3355,3436 'activ':964,1111,1440,1603,1658,1791,1799,1839,1844,1851,1905,2036,2215,2223,2241,2246,2253,2283,2288,2308,2313,2320,2350,2354,2359,2386,2391,2398,3517,3595,3668,3745,3812,3874,3928,3938,3946 'activationjobid':2294,2306,2365,2384 'addit':967,1114,1443,1661,1908,2039,2426,2432,2492,2498,2563,2567,2577,2593 'address':430,488,580,640 'admin':2692,2755 'allow':2597,2604 'altern':916 'alway':62 'api':27,30,38,45,91,148,161,255,304,350,399,424,477,546,574,629,689,713,737,794,853,910,958,1094,1233,1324,1378,1434,1647,1786,1828,1894,2025,2173,2235,2301,2374,2448,2516,2588,2621,2667,2725,2774,2807,2851,2888,2943,2985,3050,3133,3241,3340,3426,3507,3580,3658,3735,3797,3864,3922 'api.telnyx.com':85,267,307,353,407,427,485,554,577,637,692,716,740,802,856,913,961,1108,1236,1327,1386,1437,1655,1789,1836,1902,2033,2181,2238,2304,2382,2451,2524,2591,2624,2670,2733,2777,2810,2854,2891,2951,2993,3053,3141,3244,3348,3429,3510,3588,3661,3738,3805,3867,3925 'api.telnyx.com/v2/messages':84 'api.telnyx.com/v2/portability_checks':266 'api.telnyx.com/v2/porting/events':306 'api.telnyx.com/v2/porting/events/550e8400-e29b-41d4-a716-446655440000':352 'api.telnyx.com/v2/porting/events/550e8400-e29b-41d4-a716-446655440000/republish':406 'api.telnyx.com/v2/porting/loa_configurations':426,484 'api.telnyx.com/v2/porting/loa_configurations/550e8400-e29b-41d4-a716-446655440000':576,636,691 'api.telnyx.com/v2/porting/loa_configurations/550e8400-e29b-41d4-a716-446655440000/preview':715 'api.telnyx.com/v2/porting/loa_configurations/preview':553 'api.telnyx.com/v2/porting/reports':739,801 'api.telnyx.com/v2/porting/reports/550e8400-e29b-41d4-a716-446655440000':855 'api.telnyx.com/v2/porting/uk_carriers':912 'api.telnyx.com/v2/porting_orders':960,1107 'api.telnyx.com/v2/porting_orders/':3052,3140,3243,3347,3428,3509,3587,3660,3737,3804,3866 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000':1436,1654,1788 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/activate':1835 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/cancel':1901 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/confirm':2032 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/actions/share':2180 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/activation_jobs':2237 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/activation_jobs/':2303,2381 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/additional_documents':2450,2523 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/additional_documents/':2590 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/allowed_foc_windows':2623 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/comments':2669,2732 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/loa_template?loa_configuration_id=a36c2277-446b-4d11-b4ea-322e02a5c08d':2776 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/requirements':2809 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/sub_request':2853 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/verification_codes':2890 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/verification_codes/send':2950 'api.telnyx.com/v2/porting_orders/550e8400-e29b-41d4-a716-446655440000/verification_codes/verify':2992 'api.telnyx.com/v2/porting_orders/exception_types':1235 'api.telnyx.com/v2/porting_orders/phone_number_configurations':1326,1385 'api.telnyx.com/v2/porting_phone_numbers':3924 'application/json':97,261,405,483,552,635,800,1100,1384,1653,1834,1900,2031,2179,2380,2522,2731,2949,2991,3139,3346,3586,3803 'approv':4011 'array':245,313,359,918,969,1026,1037,1116,1173,1184,1445,1502,1513,1631,1663,1720,1731,1853,1910,1967,1978,2041,2098,2109,2201,2255,2322,2400,3519,3597,3670,3747,3814,3876 'associ':2832,3194,3202,3209,3295,3301,3399,3404 'asynchron':1798,1806 'atn':1248 'attribut':1557,1579,1589 'auth':1244 'authent':41,59,144 'author':88,252,301,347,396,421,474,543,571,626,686,710,734,791,850,907,955,1091,1230,1321,1375,1431,1644,1783,1825,1891,2022,2170,2232,2298,2371,2445,2513,2585,2618,2664,2722,2771,2804,2848,2885,2940,2982,3047,3130,3238,3337,3423,3504,3577,3655,3732,3794,3861,3919 'avail':310,356,891,897 'backoff':182 'base':2789 'bash':24,68,247,298,344,391,418,469,538,568,621,681,707,731,786,847,904,952,1086,1227,1318,1370,1428,1639,1778,1820,1886,2017,2165,2229,2295,2366,2442,2508,2580,2615,2661,2717,2768,2801,2845,2882,2935,2977,3044,3125,3235,3332,3418,3501,3572,3650,3729,3789,3856,3916 'bearer':89,253,302,348,397,422,475,544,572,627,687,711,735,792,851,908,956,1092,1231,1322,1376,1432,1645,1784,1826,1892,2023,2171,2233,2299,2372,2446,2514,2586,2619,2665,2723,2772,2805,2849,2886,2941,2983,3048,3131,3239,3338,3424,3505,3578,3656,3733,3795,3862,3920 'block':3482,3490,3559,3565,3637,3642 'bodi':111,123,154,2673,2715,2736 'boolean':272,281,1041,1188,1517,1735,1982,2113,2917,3019 'btn':1247,1262 'bundl':1351,1410 'call':46 'cancel':1878,3067,3097,3155,3185,3934,3947,3988,3991 'cancel-pend':3987 'carrier':892,898 'case':116 'center':1293 'check':69,128,146,173,222,231,235 'code':67,72,81,106,118,153,158,199,1239,1290,2867,2873,2921,2925,2956,2966,3256,3360,3441,3522,3600,3673 'comment':2642,2652,2697,2705 'common':156 'compani':432,490,582,642 'complet':327,373,768,830,884,1871,2273,2340,2418,3096,3184 'concur':3937 'concurr':3942 'configur':411,415,462,466,520,535,559,564,612,617,672,677,697,702,1010,1157,1307,1314,1360,1367,1486,1624,1704,1951,2082 'confirm':2007,3967,3986 'conflict':1297,3933 'contact':435,493,585,645 'content':95,259,403,481,550,633,798,1098,1382,1651,1832,1898,2029,2177,2378,2454,2520,2527,2729,2947,2989,3137,3344,3584,3801 'content-typ':94,258,402,480,549,632,797,1097,1381,1650,1831,1897,2028,2176,2377,2519,2728,2946,2988,3136,3343,3583,3800 'cost':1021,1168,1497,1715,1962,2093,3278,3382,3463,3544,3622,3695,3960 'count':1031,1178,1507,1725,1972,2103 'countri':198,3255,3359,3440,3521,3599,3672 'country/number':2791 'creat':326,372,437,459,463,495,533,587,647,743,774,805,859,920,971,1062,1066,1118,1330,1354,1361,1389,1447,1665,1855,1867,1912,2043,2138,2184,2257,2269,2324,2336,2402,2414,2457,2488,2494,2530,2675,2695,2702,2738,2894,2996,3071,3094,3159,3182,3258,3293,3298,3362,3443,3524,3555,3560,3602,3675,3749,3772,3777,3816,3878 'csr':2470,2543 'csv':764,826,880 'cupid':917,925 'curl':5,9,12,76,248,299,345,392,419,470,539,569,622,682,708,732,787,848,905,953,1087,1228,1319,1371,1429,1640,1779,1821,1887,2018,2166,2230,2296,2367,2443,2509,2581,2616,2662,2718,2769,2802,2846,2883,2936,2978,3045,3126,3236,3333,3419,3502,3573,3651,3730,3790,3857,3917 'current':1597 'custom':976,981,1078,1082,1123,1128,1452,1457,1606,1610,1670,1675,1917,1922,2048,2053 'd':98,115,262,1101 'dash':202 'date':440,457,498,515,590,607,650,667,746,772,808,834,862,888,923,937,974,1051,1121,1198,1333,1348,1392,1407,1450,1527,1668,1745,1842,1858,1876,1915,1992,2046,2123,2187,2192,2244,2260,2278,2311,2327,2345,2389,2405,2423,2460,2486,2533,2559,2599,2606,2630,2638,2678,2741,2897,2914,2999,3016,3074,3102,3162,3190,3261,3291,3365,3395,3446,3476,3527,3553,3605,3631,3678,3704,3752,3770,3819,3837,3881,3899,3985 'date-tim':439,456,497,514,589,606,649,666,745,771,807,833,861,887,922,936,973,1050,1120,1197,1332,1347,1391,1406,1449,1526,1667,1744,1841,1857,1875,1914,1991,2045,2122,2186,2191,2243,2259,2277,2310,2326,2344,2388,2404,2422,2459,2485,2532,2558,2629,2637,2677,2740,2896,2913,2998,3015,3073,3101,3161,3189,3260,3290,3364,3394,3445,3475,3526,3552,3604,3630,3677,3703,3751,3769,3818,3836,3880,3898 'delay':139 'delet':669,673,678,684,1756,1760,1775,1781,2561,2565,2573,2583,3397,3402,3411,3421,3633,3638,3643,3653,3839,3844,3849,3859 'demand':1850,2252,2319,2397 'descript':985,1132,1301,1461,1679,1926,2057 'detail':1419,1544 'disconnect':3228,3254,3325,3358,3439,3940 'document':748,810,864,987,1134,1463,1613,1681,1928,2059,2427,2433,2462,2465,2493,2499,2535,2538,2564,2568,2578,2594,2816 'download':2758 'draft':1773,3977 'e.164':190 'e.g':192 'echo':107,112,121,125,134,143,150 'edit':1538,1542 'end':989,1136,1465,1615,1683,1930,2061,2627 'endpoint':207 'entiti':1250 'enum':317,325,363,371,760,766,822,828,876,882,1015,1162,1240,1491,1709,1846,1866,1956,2087,2248,2268,2315,2335,2393,2413,2467,2540,2691,2754,2815,3084,3093,3172,3181,3252,3272,3356,3376,3437,3457,3538,3616,3689,3930,3954,3965,3976,3997 'error':42,51,56,60,64,127,151,157,172 'esac':155 'event':288,295,315,335,340,361,381,386 'everi':1792 'exampl':34 'except':1211,1219,3982,4010 'exist':1422,1547,1762 'expir':1254,2189,2194 'exponenti':181 'export':25,761,823,877 'extens':3710,3718,3754,3776,3782,3821,3843,3848,3883 'fail':48,145,1872,2274,2341,2419,3098,3186,3936 'failur':1300 'fast':270 'fastport':1813 'featur':1274 'feedback':1054,1201,1530,1634,1748,1995,2126 'field':130,174,2813,2818 'filenam':2472,2545 'foc':1253,1255,2598,2605,3984 'foc-date-confirm':3983 'format':132,175,191 'found':169 'free':1023,1170,1499,1717,1964,2095,3280,3384,3465,3546,3624,3697,3962 'gb':3218,3315 'generat':529,725,779,843 'get':296,341,416,565,703,729,844,902,950,1225,1316,1425,2225,2290,2438,2611,2657,2764,2797,2841,2878,3038,3229,3495,3723,3914 'group':977,1079,1124,1453,1607,1627,1671,1918,2049 'h':87,93,251,257,300,346,395,401,420,473,479,542,548,570,625,631,685,709,733,790,796,849,906,954,1090,1096,1229,1320,1374,1380,1430,1643,1649,1782,1824,1830,1890,1896,2021,2027,2169,2175,2231,2297,2370,2376,2444,2512,2518,2584,2617,2663,2721,2727,2770,2803,2847,2884,2939,2945,2981,2987,3046,3129,3135,3237,3336,3342,3422,3503,3576,3582,3654,3731,3793,3799,3860,3918 'handl':43,63 'hello':104 'http':70,80,105,117,152 'id':319,330,343,365,376,389,442,449,500,507,567,592,599,620,652,659,680,705,749,751,811,813,846,865,867,927,992,1057,1139,1204,1335,1340,1352,1394,1399,1411,1427,1468,1533,1601,1628,1686,1751,1777,1818,1860,1884,1933,1998,2015,2064,2129,2163,2198,2205,2227,2262,2292,2329,2363,2407,2440,2463,2474,2478,2506,2536,2547,2551,2575,2579,2595,2613,2659,2680,2684,2712,2743,2747,2766,2799,2836,2840,2843,2859,2863,2880,2899,2906,2933,2975,3001,3008,3042,3057,3076,3080,3090,3121,3123,3145,3164,3168,3178,3233,3248,3263,3283,3330,3352,3367,3387,3415,3417,3433,3448,3468,3499,3514,3529,3570,3592,3607,3647,3649,3665,3680,3727,3742,3757,3762,3787,3809,3824,3829,3853,3855,3871,3886,3891,3971 'immedi':239 'import':183 'in-process':1868,2270,2337,2415,3978 'includ':194,1560,1565,1575,1594 'incorrect':1284 'info':4000,4004,4009 'initi':3104,3108 'instal':10,16 'insuffici':164 'integ':1032,1179,1508,1726,1973,2104,2197 'interpret':1586 'invalid':160,1269 'invoic':2469,2542 'irrespons':1265 'job':2216,2224,2284,2289,2351,2360 'keep':3253,3357,3438 'kept':3226,3323 'key':28,31,39,92,149,162,256,305,351,400,425,478,547,575,630,690,714,738,795,854,911,959,1005,1045,1095,1152,1192,1234,1325,1379,1435,1481,1521,1648,1699,1739,1787,1829,1895,1946,1986,2026,2077,2117,2174,2236,2302,2375,2449,2517,2589,2622,2668,2726,2775,2808,2852,2889,2944,2986,3051,3134,3242,3341,3427,3508,3581,3659,3736,3798,3865,3923,4013 'landlin':1016,1163,1492,1710,1957,2088,3273,3377,3458,3539,3617,3690,3955 'limit':53,136,178,1810 'linux':19 'list':206,285,291,409,412,718,722,890,896,939,945,1209,1215,1303,1310,1356,1363,2212,2219,2425,2430,2490,2496,2596,2602,2640,2649,2779,2785,2865,2870,2959,2969,3020,3029,3192,3199,3478,3485,3706,3713,3901,3908 'loa':410,414,461,465,519,524,534,558,563,611,616,671,676,696,701,2468,2541,2762 'local':1017,1164,1493,1711,1958,2089,3274,3378,3459,3540,3618,3691,3956 'locat':1257 'logo':444,502,594,654 'lsr':1259 'maco':18 'main':1261 'may':1558 'messag':994,1141,1470,1618,1688,1935,2066 'met':1040,1187,1516,1734,1981,2112 'meta.total':223 'method':312,358 'misc':996,1143,1472,1620,1690,1937,2068 'mismatch':1243,1246,1249,1252,1258,1277,1291 'miss':1588 'mobil':1018,1165,1494,1712,1959,2090,3275,3379,3460,3541,3619,3692,3957 'must':187 'n':79 'name':433,446,491,504,583,596,643,656,929,1251 'nation':1019,1166,1495,1713,1960,2091,3276,3380,3461,3542,3620,3693,3958 'navig':220 'need':531 'network':50 'new':1068,2704,3300,3562,3779,3931 'non':2158 'non-telnyx':2157 'note':184 'notif':311,357 'null':980,984,1007,1047,1085,1127,1131,1154,1194,1456,1460,1483,1523,1674,1678,1701,1741,1921,1925,1948,1988,2052,2056,2079,2119,3066,3070,3154,3158 'number':186,213,244,264,278,1009,1013,1025,1030,1076,1103,1156,1160,1172,1177,1242,1271,1276,1279,1306,1313,1339,1359,1366,1398,1485,1489,1501,1506,1623,1703,1707,1719,1724,1793,1801,1950,1954,1966,1971,2081,2085,2097,2102,2902,2930,2962,2972,3004,3196,3204,3211,3223,3266,3270,3297,3303,3320,3370,3374,3401,3406,3451,3455,3481,3489,3532,3536,3558,3564,3610,3614,3636,3641,3683,3687,3709,3717,3761,3775,3781,3828,3842,3847,3890,3905,3913,3949,3952 'object':322,368,431,436,445,489,494,503,581,586,595,641,646,655,754,816,870,966,988,991,995,997,1011,1027,1038,1043,1055,1071,1113,1135,1138,1142,1144,1158,1174,1185,1190,1202,1442,1464,1467,1471,1473,1487,1503,1514,1519,1531,1564,1605,1614,1617,1619,1621,1625,1632,1635,1660,1682,1685,1689,1691,1705,1721,1732,1737,1749,1854,1907,1929,1932,1936,1938,1952,1968,1979,1984,1996,2038,2060,2063,2067,2069,2083,2099,2110,2115,2127,2256,2323,2401,2829,3268,3372,3453,3520,3534,3598,3612,3671,3685,3748,3756,3815,3823,3877,3885 'ocn':1001,1148,1477,1695,1942,2073 'old':998,1145,1474,1692,1939,2070,3944 'on-demand':1848,2250,2317,2395 'oper':728,783,1766,1808 'option':242,1077,1602,2714 'order':329,375,763,825,879,942,949,1065,1070,1224,1286,1416,1424,1541,1549,1556,1759,1764,1771,1797,1805,1814,1881,2006,2012,2137,2145,2155,2204,2437,2477,2503,2550,2572,2610,2646,2656,2683,2701,2709,2746,2761,2781,2796,2877,2905,3007,3026,3037,3041,3056,3079,3116,3120,3144,3167,3208,3232,3247,3282,3307,3329,3351,3386,3410,3414,3432,3467,3494,3498,3513,3569,3591,3646,3664,3722,3726,3741,3786,3808,3852,3870,3970,3974 'organ':448,506,598,658 'osp':1264 'page':212,215,221,224 'pagin':205,209,1315 'param':753,815,869 'paramet':218,521 'parent':1003,1150,1479,1697,1944,2075 'parenthes':204 'partial':3215,3312 'passcod':1267 'patch':618,624,1568,1599,1642,2361,2369 'payload':321,323,367,369 'pend':767,829,883,1260,3095,3183,3932,3935,3941,3966,3989,4001 'permiss':165,2200 'person':1245 'phone':185,243,263,277,1008,1012,1024,1029,1075,1102,1155,1159,1171,1176,1270,1275,1278,1305,1312,1338,1358,1365,1397,1484,1488,1500,1505,1622,1702,1706,1718,1723,1949,1953,1965,1970,2080,2084,2096,2101,2901,2929,2961,2971,3003,3195,3203,3210,3222,3265,3269,3296,3302,3319,3369,3373,3400,3405,3450,3454,3480,3488,3531,3535,3557,3563,3609,3613,3635,3640,3682,3686,3708,3716,3760,3774,3780,3827,3841,3846,3889,3904,3912,3948,3951 'pin':1268 'port':3,7,287,294,328,334,339,374,380,385,719,727,762,776,782,824,878,941,948,1028,1064,1069,1175,1223,1263,1282,1285,1337,1396,1415,1423,1504,1540,1548,1555,1722,1758,1763,1770,1796,1804,1880,1969,2005,2011,2100,2136,2144,2154,2203,2214,2222,2282,2287,2349,2358,2436,2476,2502,2549,2571,2609,2645,2655,2682,2700,2708,2745,2760,2780,2795,2838,2857,2876,2904,2928,3006,3025,3036,3040,3055,3078,3085,3115,3119,3143,3166,3173,3207,3216,3231,3246,3281,3306,3313,3328,3350,3385,3409,3413,3431,3466,3493,3497,3512,3568,3590,3645,3663,3721,3725,3740,3759,3785,3807,3826,3851,3869,3888,3903,3911,3969,3973,3990 'portabl':230,234,271,274,280,1281,1295,3963 'porting_order.deleted':318,364 'possibl':1218 'post':83,240,250,387,394,467,472,536,541,784,789,1072,1089,1368,1373,1816,1823,1882,1889,2013,2020,2161,2168,2504,2511,2710,2720,2931,2938,2973,2980,3117,3128,3326,3335,3566,3575,3783,3792 'postal':1289 'pre':15 'pre-instal':14 'prefix':196 'preview':517,522,694,698 'process':1870,2272,2339,2417,3980 'product':66 'provid':1000,1147,1476,1694,1941,2072 'provision':3968 'queri':217 'rang':3267,3371,3452,3518,3533,3596,3611,3669,3684,3746,3755,3813,3822,3875,3884 'rate':52,135,177,1292 'rdi':3939 'reason':275,3068,3156 'record':282,451,509,601,661,755,817,871,931,1033,1180,1342,1401,1509,1727,1862,1974,2105,2207,2264,2331,2409,2480,2553,2632,2686,2749,2821,2908,3010,3082,3170,3285,3389,3470,3547,3625,3698,3764,3831,3893,3992 'refer':978,982,1080,1083,1125,1129,1454,1458,1608,1611,1672,1676,1919,1923,2050,2054 'reject':1256 'relat':720,777 'report':721,724,758,778,780,820,838,842,874 'republish':378,382 'request':1569,1572,2835,2839,2858,2862 'requir':129,1036,1039,1074,1183,1186,1288,1512,1515,1626,1630,1730,1733,1977,1980,2108,2111,2782,2788,2824,2827,3022,3032,3087,3088,3107,3112,3175,3176,3995,3999,4003,4008 'requirement-info-except':4007 'requirement-info-pend':3998 'requirement-info-under-review':4002 'resourc':167,1563,1582 'respons':74,75,108,113,227 'restrict':1768 'result':210,238 'retri':137,179 'retriev':556,560,836,839,1413,1417,2280,2830 'return':208,236,269,289,309,355,429,487,579,639,742,804,858,915,943,963,1110,1213,1238,1308,1329,1388,1439,1657,1838,1904,2035,2183,2217,2240,2285,2307,2385,2428,2453,2526,2600,2626,2647,2672,2735,2783,2812,2856,2868,2893,2995,3027,3059,3147,3197,3250,3354,3435,3483,3516,3594,3667,3711,3744,3811,3873,3906,3927 'review':4006 'run':228,232 'schedul':1847,2249,2316,2394 'second':2196 'sed':114 'send':2918,2922,3945 'sent':3943 'servic':999,1146,1475,1693,1940,2071 'set':965,1112,1441,1604,1659,1906,2037 'setup':23 'share':1020,1167,1496,1714,1961,2092,2134,2140,2152,3277,3381,3462,3543,3621,3694,3959 'show':332,336 'size':216 'skill' 'skill-telnyx-porting-in-curl' 'sleep':140 'source-team-telnyx' 'space':201 'special':1273 'specif':338,384,562,615,675,700,841,3035,3110 'specifi':3220,3317 'split':1287 'start':2635 'state':1774 'status':71,324,370,765,827,881,1042,1189,1518,1736,1865,1983,2114,2267,2334,2412,2825,3092,3180,3929,3964,3975,3996 'step':968,1115,1444,1662,1909,2040 'string':246,276,279,284,314,360,434,447,450,453,492,505,508,511,584,597,600,603,644,657,660,663,757,819,873,919,926,930,933,970,979,983,986,1002,1006,1035,1046,1081,1084,1117,1126,1130,1133,1149,1153,1182,1193,1302,1344,1403,1446,1455,1459,1462,1478,1482,1511,1522,1609,1612,1664,1673,1677,1680,1696,1700,1729,1740,1864,1911,1920,1924,1927,1943,1947,1976,1987,2042,2051,2055,2058,2074,2078,2107,2118,2202,2209,2211,2266,2333,2411,2456,2473,2482,2529,2546,2555,2634,2674,2688,2716,2737,2751,2820,2823,2826,2860,2864,2903,2910,3005,3012,3062,3065,3069,3077,3081,3091,3150,3153,3157,3165,3169,3179,3257,3287,3361,3391,3442,3472,3523,3549,3601,3627,3674,3700,3766,3833,3895,3950,3994,4014 'sub':2834,2861 'submit':2003,2009,3981 'success':122 'support':1004,1044,1151,1191,1480,1520,1698,1738,1945,1985,2076,2116,4012 'sv':1296,1298 'system':1584,2694,2757 'tail':109 'telnyx':2,6,26,37,90,147,254,303,349,398,423,476,545,573,628,688,712,736,793,852,909,957,1093,1232,1323,1377,1433,1646,1785,1827,1893,2024,2159,2172,2234,2300,2373,2447,2515,2587,2620,2666,2724,2773,2806,2850,2887,2942,2984,3049,3132,3240,3339,3425,3506,3579,3657,3734,3796,3863,3921 'telnyx-porting-in-curl':1 'templat':525,2763 'text':11,103 'textual':2817 'time':441,458,499,516,591,608,651,668,747,773,809,835,863,889,924,938,975,1052,1122,1199,1334,1349,1393,1408,1451,1528,1669,1746,1843,1859,1877,1916,1993,2047,2124,2188,2193,2245,2261,2279,2312,2328,2346,2355,2390,2406,2424,2461,2487,2534,2560,2631,2639,2679,2742,2898,2915,3000,3017,3075,3103,3163,3191,3262,3292,3366,3396,3447,3477,3528,3554,3606,3632,3679,3705,3753,3771,3820,3838,3882,3900 'token':2141,2147,2210 'toll':1022,1169,1498,1716,1963,2094,3279,3383,3464,3545,3623,3696,3961 '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' 'type':96,260,283,316,362,404,452,482,510,551,602,634,662,756,759,799,818,821,872,875,932,1014,1034,1099,1161,1181,1212,1220,1283,1343,1383,1402,1490,1510,1652,1708,1728,1833,1845,1863,1899,1955,1975,2030,2086,2106,2178,2208,2247,2265,2314,2332,2379,2392,2410,2455,2466,2481,2521,2528,2539,2554,2633,2687,2690,2730,2750,2753,2792,2814,2822,2828,2909,2948,2990,3011,3061,3083,3089,3138,3149,3171,3177,3271,3286,3345,3375,3390,3456,3471,3537,3548,3585,3615,3626,3688,3699,3765,3802,3832,3894,3953,3993 'uk':895,901 'unknown':1299 'updat':454,512,604,609,613,664,769,831,885,934,1048,1195,1345,1404,1524,1742,1873,1989,2120,2275,2342,2347,2352,2420,2483,2556,2911,3013,3099,3187,3288,3392,3473,3550,3628,3701,3767,3834,3896 'uri':1061,1208,1537,1638,1755,2002,2133 'url':1060,1207,1536,1637,1754,2001,2132,3064,3152 'us':1812 'use':36,211,2150,3213,3310 'user':990,1053,1056,1137,1200,1203,1350,1409,1466,1529,1532,1616,1633,1684,1747,1750,1931,1994,1997,2062,2125,2128,2160,2689,2693,2752,2756 'uuid':320,331,366,377,443,501,593,653,750,752,812,814,866,868,928,993,1058,1140,1205,1336,1341,1353,1395,1400,1412,1469,1534,1629,1687,1752,1861,1934,1999,2065,2130,2199,2206,2263,2330,2408,2464,2475,2479,2537,2548,2552,2681,2685,2744,2748,2900,2907,3002,3009,3264,3284,3368,3388,3449,3469,3530,3608,3681,3758,3763,3825,3830,3887,3892,3972 'v1':2833 'valid':55,126,171 'valu':1598,2819 'verif':2866,2872,2920,2924,2955,2965 'verifi':2916,2953,2963,3018 'w':78 'webhook':1059,1206,1535,1636,1753,2000,2131 'window':21,1852,2254,2321,2399 'without':530 'would':527 'x':82,249,393,471,540,623,683,788,1088,1372,1641,1780,1822,1888,2019,2167,2368,2510,2582,2719,2937,2979,3127,3334,3420,3574,3652,3791,3858","prices":[{"id":"ee86a354-ee3a-4008-82d9-109865edaa5f","listingId":"a54bd139-4dd5-4ad3-a5ce-882460aec347","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:27.623Z"}],"sources":[{"listingId":"a54bd139-4dd5-4ad3-a5ce-882460aec347","source":"github","sourceId":"team-telnyx/ai/telnyx-porting-in-curl","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-porting-in-curl","isPrimary":false,"firstSeenAt":"2026-04-18T22:07:27.623Z","lastSeenAt":"2026-04-22T06:54:45.079Z"}],"details":{"listingId":"a54bd139-4dd5-4ad3-a5ce-882460aec347","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-porting-in-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":"45a047134c759d679e01ea0045d5cc31fa729640","skill_md_path":"skills/telnyx-porting-in-curl/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-porting-in-curl"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-porting-in-curl","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-porting-in-curl"},"updatedAt":"2026-04-22T06:54:45.079Z"}}