{"id":"19cd3421-f0a9-4576-a614-521090ae165c","shortId":"MuWYzd","kind":"skill","title":"telnyx-sip-integrations-curl","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Sip Integrations - curl\n\n## Installation\n\n```text\n# curl is pre-installed on macOS, Linux, and Windows 10+\n```\n\n## Setup\n\n```bash\nexport TELNYX_API_KEY=\"YOUR_API_KEY_HERE\"\n```\n\nAll examples below use `$TELNYX_API_KEY` for authentication.\n\n## Error Handling\n\nAll API calls can fail with network errors, rate limits (429), validation errors (422),\nor authentication errors (401). Always handle errors in production code:\n\n```bash\n# Check HTTP status code in response\nresponse=$(curl -s -w \"\\n%{http_code}\" \\\n  -X POST \"https://api.telnyx.com/v2/messages\" \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"to\": \"+13125550001\", \"from\": \"+13125550002\", \"text\": \"Hello\"}')\n\nhttp_code=$(echo \"$response\" | tail -1)\nbody=$(echo \"$response\" | sed '$d')\n\ncase $http_code in\n  2*) echo \"Success: $body\" ;;\n  422) echo \"Validation error — check required fields and formats\" ;;\n  429) echo \"Rate limited — retry after delay\"; sleep 1 ;;\n  401) echo \"Authentication failed — check TELNYX_API_KEY\" ;;\n  *)   echo \"Error $http_code: $body\" ;;\nesac\n```\n\nCommon error codes: `401` invalid API key, `403` insufficient permissions,\n`404` resource not found, `422` validation error (check field formats),\n`429` rate limited (retry with exponential backoff).\n\n## Important Notes\n\n- **Pagination:** List endpoints return paginated results. Use `page[number]` and `page[size]` query parameters to navigate pages. Check `meta.total_pages` in the response.\n\n## Retrieve a stored credential\n\nReturns the information about custom storage credentials.\n\n`GET /custom_storage_credentials/{connection_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/custom_storage_credentials/{connection_id}\"\n```\n\nReturns: `backend` (enum: gcs, s3, azure), `configuration` (object)\n\n## Create a custom storage credential\n\nCreates a custom storage credentials configuration.\n\n`POST /custom_storage_credentials/{connection_id}`\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/custom_storage_credentials/{connection_id}\"\n```\n\nReturns: `backend` (enum: gcs, s3, azure), `configuration` (object)\n\n## Update a stored credential\n\nUpdates a stored custom credentials configuration.\n\n`PUT /custom_storage_credentials/{connection_id}`\n\n```bash\ncurl \\\n  -X PUT \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  \"https://api.telnyx.com/v2/custom_storage_credentials/{connection_id}\"\n```\n\nReturns: `backend` (enum: gcs, s3, azure), `configuration` (object)\n\n## Delete a stored credential\n\nDeletes a stored custom credentials configuration.\n\n`DELETE /custom_storage_credentials/{connection_id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/custom_storage_credentials/{connection_id}\"\n```\n\n## Retrieve stored Dialogflow Connection\n\nReturn details of the Dialogflow connection associated with the given CallControl connection.\n\n`GET /dialogflow_connections/{connection_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/dialogflow_connections/{connection_id}\"\n```\n\nReturns: `connection_id` (string), `conversation_profile_id` (string), `environment` (string), `record_type` (string), `service_account` (string)\n\n## Create a Dialogflow Connection\n\nSave Dialogflow Credentiails to Telnyx, so it can be used with other Telnyx services.\n\n`POST /dialogflow_connections/{connection_id}`\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/dialogflow_connections/{connection_id}\"\n```\n\nReturns: `connection_id` (string), `conversation_profile_id` (string), `environment` (string), `record_type` (string), `service_account` (string)\n\n## Update stored Dialogflow Connection\n\nUpdates a stored Dialogflow Connection.\n\n`PUT /dialogflow_connections/{connection_id}`\n\n```bash\ncurl \\\n  -X PUT \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  \"https://api.telnyx.com/v2/dialogflow_connections/{connection_id}\"\n```\n\nReturns: `connection_id` (string), `conversation_profile_id` (string), `environment` (string), `record_type` (string), `service_account` (string)\n\n## Delete stored Dialogflow Connection\n\nDeletes a stored Dialogflow Connection.\n\n`DELETE /dialogflow_connections/{connection_id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/dialogflow_connections/{connection_id}\"\n```\n\n## List all External Connections\n\nThis endpoint returns a list of your External Connections inside the 'data' attribute of the response. External Connections are used by Telnyx customers to seamless configure SIP trunking integrations with Telnyx Partners, through External Voice Integrations in Mission Control Portal.\n\n`GET /external_connections`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections\"\n```\n\nReturns: `active` (boolean), `created_at` (string), `credential_active` (boolean), `external_sip_connection` (enum: zoom, operator_connect), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Creates an External Connection\n\nCreates a new External Connection based on the parameters sent in the request. The external_sip_connection and outbound voice profile id are required. Once created, you can assign phone numbers to your application using the `/phone_numbers` endpoint.\n\n`POST /external_connections` — Required: `external_sip_connection`, `outbound`\n\nOptional: `active` (boolean), `inbound` (object), `tags` (array[string]), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"external_sip_connection\": \"zoom\",\n  \"outbound\": {}\n}' \\\n  \"https://api.telnyx.com/v2/external_connections\"\n```\n\nReturns: `active` (boolean), `created_at` (string), `credential_active` (boolean), `external_sip_connection` (enum: zoom, operator_connect), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## List all log messages\n\nRetrieve a list of log messages for all external connections associated with your account.\n\n`GET /external_connections/log_messages`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/log_messages\"\n```\n\nReturns: `log_messages` (array[object]), `meta` (object)\n\n## Retrieve a log message\n\nRetrieve a log message for an external connection associated with your account.\n\n`GET /external_connections/log_messages/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/log_messages/1293384261075731499\"\n```\n\nReturns: `log_messages` (array[object])\n\n## Dismiss a log message\n\nDismiss a log message for an external connection associated with your account.\n\n`DELETE /external_connections/log_messages/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/external_connections/log_messages/1293384261075731499\"\n```\n\nReturns: `success` (boolean)\n\n## Retrieve an External Connection\n\nReturn the details of an existing External Connection inside the 'data' attribute of the response.\n\n`GET /external_connections/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/1293384261075731499\"\n```\n\nReturns: `active` (boolean), `created_at` (string), `credential_active` (boolean), `external_sip_connection` (enum: zoom, operator_connect), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Update an External Connection\n\nUpdates settings of an existing External Connection based on the parameters of the request.\n\n`PATCH /external_connections/{id}` — Required: `outbound`\n\nOptional: `active` (boolean), `inbound` (object), `tags` (array[string]), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n```bash\ncurl \\\n  -X PATCH \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"outbound\": {}\n}' \\\n  \"https://api.telnyx.com/v2/external_connections/1293384261075731499\"\n```\n\nReturns: `active` (boolean), `created_at` (string), `credential_active` (boolean), `external_sip_connection` (enum: zoom, operator_connect), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## Deletes an External Connection\n\nPermanently deletes an External Connection. Deletion may be prevented if the application is in use by phone numbers, is active, or if it is an Operator Connect connection. To remove an Operator Connect integration please contact Telnyx support.\n\n`DELETE /external_connections/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/external_connections/1293384261075731499\"\n```\n\nReturns: `active` (boolean), `created_at` (string), `credential_active` (boolean), `external_sip_connection` (enum: zoom, operator_connect), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `tags` (array[string]), `updated_at` (string), `webhook_api_version` (enum: 1, 2), `webhook_event_failover_url` (uri), `webhook_event_url` (uri), `webhook_timeout_secs` (integer | null)\n\n## List all civic addresses and locations\n\nReturns the civic addresses and locations from Microsoft Teams.\n\n`GET /external_connections/{id}/civic_addresses`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/1293384261075731499/civic_addresses\"\n```\n\nReturns: `city_or_town` (string), `city_or_town_alias` (string), `company_name` (string), `country` (string), `country_or_district` (string), `default_location_id` (uuid), `description` (string), `house_number` (string), `house_number_suffix` (string), `id` (uuid), `locations` (array[object]), `postal_or_zip_code` (string), `record_type` (string), `state_or_province` (string), `street_name` (string), `street_suffix` (string)\n\n## Retrieve a Civic Address\n\nReturn the details of an existing Civic Address with its Locations inside the 'data' attribute of the response.\n\n`GET /external_connections/{id}/civic_addresses/{address_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/1293384261075731499/civic_addresses/318fb664-d341-44d2-8405-e6bfb9ced6d9\"\n```\n\nReturns: `city_or_town` (string), `city_or_town_alias` (string), `company_name` (string), `country` (string), `country_or_district` (string), `default_location_id` (uuid), `description` (string), `house_number` (string), `house_number_suffix` (string), `id` (uuid), `locations` (array[object]), `postal_or_zip_code` (string), `record_type` (string), `state_or_province` (string), `street_name` (string), `street_suffix` (string)\n\n## Update a location's static emergency address\n\n`PATCH /external_connections/{id}/locations/{location_id}` — Required: `static_emergency_address_id`\n\n```bash\ncurl \\\n  -X PATCH \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"static_emergency_address_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}' \\\n  \"https://api.telnyx.com/v2/external_connections/550e8400-e29b-41d4-a716-446655440000/locations/{location_id}\"\n```\n\nReturns: `accepted_address_suggestions` (boolean), `location_id` (uuid), `static_emergency_address_id` (uuid)\n\n## List all phone numbers\n\nReturns a list of all active phone numbers associated with the given external connection.\n\n`GET /external_connections/{id}/phone_numbers`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/1293384261075731499/phone_numbers\"\n```\n\nReturns: `acquired_capabilities` (array[string]), `civic_address_id` (uuid), `displayed_country_code` (string), `location_id` (uuid), `number_id` (string), `telephone_number` (string), `ticket_id` (uuid)\n\n## Retrieve a phone number\n\nReturn the details of a phone number associated with the given external connection.\n\n`GET /external_connections/{id}/phone_numbers/{phone_number_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/1293384261075731499/phone_numbers/1234567889\"\n```\n\nReturns: `acquired_capabilities` (array[string]), `civic_address_id` (uuid), `displayed_country_code` (string), `location_id` (uuid), `number_id` (string), `telephone_number` (string), `ticket_id` (uuid)\n\n## Update a phone number\n\nAsynchronously update settings of the phone number associated with the given external connection.\n\n`PATCH /external_connections/{id}/phone_numbers/{phone_number_id}`\n\nOptional: `location_id` (uuid)\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/external_connections/1293384261075731499/phone_numbers/1234567889\"\n```\n\nReturns: `acquired_capabilities` (array[string]), `civic_address_id` (uuid), `displayed_country_code` (string), `location_id` (uuid), `number_id` (string), `telephone_number` (string), `ticket_id` (uuid)\n\n## List all Releases\n\nReturns a list of your Releases for the given external connection. These are automatically created when you change the `connection_id` of a phone number that is currently on Microsoft Teams.\n\n`GET /external_connections/{id}/releases`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/1293384261075731499/releases\"\n```\n\nReturns: `created_at` (string), `error_message` (string), `status` (enum: pending_upload, pending, in_progress, complete, failed, expired, unknown), `telephone_numbers` (array[object]), `tenant_id` (uuid), `ticket_id` (uuid)\n\n## Retrieve a Release request\n\nReturn the details of a Release request and its phone numbers.\n\n`GET /external_connections/{id}/releases/{release_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/1293384261075731499/releases/7b6a6449-b055-45a6-81f6-f6f0dffa4cc6\"\n```\n\nReturns: `created_at` (string), `error_message` (string), `status` (enum: pending_upload, pending, in_progress, complete, failed, expired, unknown), `telephone_numbers` (array[object]), `tenant_id` (uuid), `ticket_id` (uuid)\n\n## List all Upload requests\n\nReturns a list of your Upload requests for the given external connection.\n\n`GET /external_connections/{id}/uploads`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/1293384261075731499/uploads\"\n```\n\nReturns: `available_usages` (array[string]), `error_code` (string), `error_message` (string), `location_id` (uuid), `status` (enum: pending_upload, pending, in_progress, partial_success, success, error), `tenant_id` (uuid), `ticket_id` (uuid), `tn_upload_entries` (array[object])\n\n## Creates an Upload request\n\nCreates a new Upload request to Microsoft teams with the included phone numbers. Only one of civic_address_id or location_id must be provided, not both. The maximum allowed phone numbers for the numbers_ids array is 1000.\n\n`POST /external_connections/{id}/uploads` — Required: `number_ids`\n\nOptional: `additional_usages` (array[string]), `civic_address_id` (uuid), `location_id` (uuid), `usage` (enum: calling_user_assignment, first_party_app_assignment)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"number_ids\": [\n    \"550e8400-e29b-41d4-a716-446655440000\"\n  ]\n}' \\\n  \"https://api.telnyx.com/v2/external_connections/1293384261075731499/uploads\"\n```\n\nReturns: `success` (boolean), `ticket_id` (uuid)\n\n## Refresh the status of all Upload requests\n\nForces a recheck of the status of all pending Upload requests for the given external connection in the background.\n\n`POST /external_connections/{id}/uploads/refresh`\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/external_connections/1293384261075731499/uploads/refresh\"\n```\n\nReturns: `success` (boolean)\n\n## Get the count of pending upload requests\n\nReturns the count of all pending upload requests for the given external connection.\n\n`GET /external_connections/{id}/uploads/status`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/1293384261075731499/uploads/status\"\n```\n\nReturns: `pending_numbers_count` (integer), `pending_orders_count` (integer)\n\n## Retrieve an Upload request\n\nReturn the details of an Upload request and its phone numbers.\n\n`GET /external_connections/{id}/uploads/{ticket_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/external_connections/1293384261075731499/uploads/7b6a6449-b055-45a6-81f6-f6f0dffa4cc6\"\n```\n\nReturns: `available_usages` (array[string]), `error_code` (string), `error_message` (string), `location_id` (uuid), `status` (enum: pending_upload, pending, in_progress, partial_success, success, error), `tenant_id` (uuid), `ticket_id` (uuid), `tn_upload_entries` (array[object])\n\n## Retry an Upload request\n\nIf there were any errors during the upload process, this endpoint will retry the upload request. In some cases this will reattempt the existing upload request, in other cases it may create a new upload request. Please check the ticket_id in the response to determine if a new upload request was created.\n\n`POST /external_connections/{id}/uploads/{ticket_id}/retry`\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/external_connections/1293384261075731499/uploads/7b6a6449-b055-45a6-81f6-f6f0dffa4cc6/retry\"\n```\n\nReturns: `available_usages` (array[string]), `error_code` (string), `error_message` (string), `location_id` (uuid), `status` (enum: pending_upload, pending, in_progress, partial_success, success, error), `tenant_id` (uuid), `ticket_id` (uuid), `tn_upload_entries` (array[object])\n\n## List uploaded media\n\nReturns a list of stored media files.\n\n`GET /media`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/media\"\n```\n\nReturns: `content_type` (string), `created_at` (string), `expires_at` (string), `media_name` (string), `updated_at` (string)\n\n## Upload media\n\nUpload media file to Telnyx so it can be used with other Telnyx services\n\n`POST /media` — Required: `media_url`\n\nOptional: `media_name` (string), `ttl_secs` (integer)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -F \"media=@/path/to/file\" \\\n  -F \"ttl_secs=86400\" \\\n  -F \"media_name=my_file\" \\\n  \"https://api.telnyx.com/v2/media\"\n```\n\nReturns: `content_type` (string), `created_at` (string), `expires_at` (string), `media_name` (string), `updated_at` (string)\n\n## Retrieve stored media\n\nReturns the information about a stored media file.\n\n`GET /media/{media_name}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/media/{media_name}\"\n```\n\nReturns: `content_type` (string), `created_at` (string), `expires_at` (string), `media_name` (string), `updated_at` (string)\n\n## Update stored media\n\nUpdates a stored media file.\n\n`PUT /media/{media_name}`\n\nOptional: `media_url` (string), `ttl_secs` (integer)\n\n```bash\ncurl \\\n  -X PUT \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -F \"media=@/path/to/file\" \\\n  -F \"ttl_secs=86400\" \\\n  \"https://api.telnyx.com/v2/media/{media_name}\"\n```\n\nReturns: `content_type` (string), `created_at` (string), `expires_at` (string), `media_name` (string), `updated_at` (string)\n\n## Deletes stored media\n\nDeletes a stored media file.\n\n`DELETE /media/{media_name}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/media/{media_name}\"\n```\n\n## Download stored media\n\nDownloads a stored media file.\n\n`GET /media/{media_name}/download`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/media/{media_name}/download\"\n```\n\n## Refresh Operator Connect integration\n\nThis endpoint will make an asynchronous request to refresh the Operator Connect integration with Microsoft Teams for the current user. This will create new external connections on the user's account if needed, and/or report the integration results as [log messages](https://developers.telnyx.com/api-reference/external-connections/list-all-log-messages#list-all-log-messages).\n\n`POST /operator_connect/actions/refresh`\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/operator_connect/actions/refresh\"\n```\n\nReturns: `message` (string), `success` (boolean)\n\n## List all recording transcriptions\n\nReturns a list of your recording transcriptions.\n\n`GET /recording_transcriptions`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/recording_transcriptions\"\n```\n\nReturns: `created_at` (string), `duration_millis` (int32), `id` (string), `record_type` (enum: recording_transcription), `recording_id` (string), `status` (enum: in-progress, completed), `transcription_text` (string), `updated_at` (string)\n\n## Retrieve a recording transcription\n\nRetrieves the details of an existing recording transcription.\n\n`GET /recording_transcriptions/{recording_transcription_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/recording_transcriptions/6a09cdc3-8948-47f0-aa62-74ac943d6c58\"\n```\n\nReturns: `created_at` (string), `duration_millis` (int32), `id` (string), `record_type` (enum: recording_transcription), `recording_id` (string), `status` (enum: in-progress, completed), `transcription_text` (string), `updated_at` (string)\n\n## Delete a recording transcription\n\nPermanently deletes a recording transcription.\n\n`DELETE /recording_transcriptions/{recording_transcription_id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/recording_transcriptions/6a09cdc3-8948-47f0-aa62-74ac943d6c58\"\n```\n\nReturns: `created_at` (string), `duration_millis` (int32), `id` (string), `record_type` (enum: recording_transcription), `recording_id` (string), `status` (enum: in-progress, completed), `transcription_text` (string), `updated_at` (string)\n\n## List all call recordings\n\nReturns a list of your call recordings.\n\n`GET /recordings`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/recordings\"\n```\n\nReturns: `call_control_id` (string), `call_leg_id` (string), `call_session_id` (string), `channels` (enum: single, dual), `conference_id` (string), `connection_id` (string), `created_at` (string), `download_urls` (object), `duration_millis` (int32), `from` (string), `id` (string), `initiated_by` (string), `record_type` (enum: recording), `recording_ended_at` (string), `recording_started_at` (string), `source` (enum: conference, call), `status` (enum: completed), `to` (string), `updated_at` (string)\n\n## Delete a list of call recordings\n\nPermanently deletes a list of call recordings.\n\n`POST /recordings/actions/delete`\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/recordings/actions/delete\"\n```\n\nReturns: `status` (enum: ok)\n\n## Retrieve a call recording\n\nRetrieves the details of an existing call recording.\n\n`GET /recordings/{recording_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/recordings/{recording_id}\"\n```\n\nReturns: `call_control_id` (string), `call_leg_id` (string), `call_session_id` (string), `channels` (enum: single, dual), `conference_id` (string), `connection_id` (string), `created_at` (string), `download_urls` (object), `duration_millis` (int32), `from` (string), `id` (string), `initiated_by` (string), `record_type` (enum: recording), `recording_ended_at` (string), `recording_started_at` (string), `source` (enum: conference, call), `status` (enum: completed), `to` (string), `updated_at` (string)\n\n## Delete a call recording\n\nPermanently deletes a call recording.\n\n`DELETE /recordings/{recording_id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/recordings/{recording_id}\"\n```\n\nReturns: `call_control_id` (string), `call_leg_id` (string), `call_session_id` (string), `channels` (enum: single, dual), `conference_id` (string), `connection_id` (string), `created_at` (string), `download_urls` (object), `duration_millis` (int32), `from` (string), `id` (string), `initiated_by` (string), `record_type` (enum: recording), `recording_ended_at` (string), `recording_started_at` (string), `source` (enum: conference, call), `status` (enum: completed), `to` (string), `updated_at` (string)\n\n## Create a SIPREC connector\n\nCreates a new SIPREC connector configuration.\n\n`POST /siprec_connectors`\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/siprec_connectors\"\n```\n\nReturns: `app_subdomain` (string), `created_at` (string), `host` (string), `name` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Retrieve a SIPREC connector\n\nReturns details of a stored SIPREC connector.\n\n`GET /siprec_connectors/{connector_name}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/siprec_connectors/{connector_name}\"\n```\n\nReturns: `app_subdomain` (string), `created_at` (string), `host` (string), `name` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Update a SIPREC connector\n\nUpdates a stored SIPREC connector configuration.\n\n`PUT /siprec_connectors/{connector_name}`\n\n```bash\ncurl \\\n  -X PUT \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  \"https://api.telnyx.com/v2/siprec_connectors/{connector_name}\"\n```\n\nReturns: `app_subdomain` (string), `created_at` (string), `host` (string), `name` (string), `port` (integer), `record_type` (string), `updated_at` (string)\n\n## Delete a SIPREC connector\n\nDeletes a stored SIPREC connector.\n\n`DELETE /siprec_connectors/{connector_name}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/siprec_connectors/{connector_name}\"\n```","tags":["telnyx","sip","integrations","curl","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm"],"capabilities":["skill","source-team-telnyx","skill-telnyx-sip-integrations-curl","topic-agent-skills","topic-ai-coding-agent","topic-claude-code","topic-cpaas","topic-cursor","topic-iot","topic-llm","topic-sdk","topic-sip","topic-sms","topic-speech-to-text","topic-telephony"],"categories":["ai"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/team-telnyx/ai/telnyx-sip-integrations-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 (27,472 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T06:54:47.741Z","embedding":null,"createdAt":"2026-04-18T22:07:43.889Z","updatedAt":"2026-04-22T06:54:47.741Z","lastSeenAt":"2026-04-22T06:54:47.741Z","tsv":"'+13125550001':100 '+13125550002':102 '-1':110 '/api-reference/external-connections/list-all-log-messages#list-all-log-messages).':2542 '/civic_addresses':1231,1323 '/custom_storage_credentials':220,256,298,340 '/dialogflow_connections':375,426,475,524 '/download':2480,2494 '/external_connections':587,693,924,1007,1147,1229,1321,1400,1473,1530,1590,1678,1736,1797,1891,1978,2023,2062,2172 '/external_connections/log_messages':815,851,886 '/locations':1402 '/media':2243,2288,2352,2393,2450,2477 '/operator_connect/actions/refresh':2544 '/path/to/file':2311,2415 '/phone_numbers':690,1475,1532,1592 '/recording_transcriptions':2580,2634,2688 '/recordings':2746,2871,2960 '/recordings/actions/delete':2835 '/releases':1680,1738 '/retry':2177 '/siprec_connectors':3052,3102,3148,3200 '/uploads':1799,1893,2064,2174 '/uploads/refresh':1980 '/uploads/status':2025 '/v2/custom_storage_credentials/':233,276,318,355 '/v2/dialogflow_connections/':388,446,495,539 '/v2/external_connections':598,744 '/v2/external_connections/1293384261075731499':936,1052,1161 '/v2/external_connections/1293384261075731499/civic_addresses':1242 '/v2/external_connections/1293384261075731499/civic_addresses/318fb664-d341-44d2-8405-e6bfb9ced6d9':1336 '/v2/external_connections/1293384261075731499/phone_numbers':1486 '/v2/external_connections/1293384261075731499/phone_numbers/1234567889':1546,1617 '/v2/external_connections/1293384261075731499/releases':1691 '/v2/external_connections/1293384261075731499/releases/7b6a6449-b055-45a6-81f6-f6f0dffa4cc6':1751 '/v2/external_connections/1293384261075731499/uploads':1810,1944 '/v2/external_connections/1293384261075731499/uploads/7b6a6449-b055-45a6-81f6-f6f0dffa4cc6':2077 '/v2/external_connections/1293384261075731499/uploads/7b6a6449-b055-45a6-81f6-f6f0dffa4cc6/retry':2195 '/v2/external_connections/1293384261075731499/uploads/refresh':1998 '/v2/external_connections/1293384261075731499/uploads/status':2036 '/v2/external_connections/550e8400-e29b-41d4-a716-446655440000/locations/':1438 '/v2/external_connections/log_messages':826 '/v2/external_connections/log_messages/1293384261075731499':863,900 '/v2/media':2254,2323 '/v2/media/':2365,2422,2465,2491 '/v2/messages':86 '/v2/operator_connect/actions/refresh':2562 '/v2/recording_transcriptions':2591 '/v2/recording_transcriptions/6a09cdc3-8948-47f0-aa62-74ac943d6c58':2648,2704 '/v2/recordings':2757 '/v2/recordings/':2884,2975 '/v2/recordings/actions/delete':2853 '/v2/siprec_connectors':3070 '/v2/siprec_connectors/':3115,3168,3215 '1':141,634,780,972,1088,1197 '10':22 '1000':1889 '2':120,635,781,973,1089,1198 '401':61,142,159 '403':163 '404':166 '41d4':1433,1939 '422':57,124,170 '429':54,133,176 '446655440000':1435,1941 '550e8400':1430,1936 '86400':2315,2419 'a716':1434,1940 'accept':1442 'account':405,463,512,813,849,884,2529 'acquir':1488,1548,1619 'activ':600,606,700,746,752,938,944,1012,1054,1060,1127,1163,1169,1463 'addit':1898 'address':1216,1222,1301,1309,1324,1398,1408,1428,1443,1451,1493,1553,1624,1868,1903 'alia':1251,1345 'allow':1880 'alway':62 'and/or':2532 'api':27,30,38,45,91,148,161,229,267,309,351,384,437,486,535,594,631,729,777,822,859,896,932,969,1041,1085,1157,1194,1238,1332,1418,1482,1542,1608,1687,1747,1806,1926,1989,2032,2073,2186,2250,2307,2361,2411,2461,2487,2553,2587,2644,2700,2753,2844,2880,2971,3061,3111,3159,3211 'api.telnyx.com':85,232,275,317,354,387,445,494,538,597,743,825,862,899,935,1051,1160,1241,1335,1437,1485,1545,1616,1690,1750,1809,1943,1997,2035,2076,2194,2253,2322,2364,2421,2464,2490,2561,2590,2647,2703,2756,2852,2883,2974,3069,3114,3167,3214 'api.telnyx.com/v2/custom_storage_credentials/':231,274,316,353 'api.telnyx.com/v2/dialogflow_connections/':386,444,493,537 'api.telnyx.com/v2/external_connections':596,742 'api.telnyx.com/v2/external_connections/1293384261075731499':934,1050,1159 'api.telnyx.com/v2/external_connections/1293384261075731499/civic_addresses':1240 'api.telnyx.com/v2/external_connections/1293384261075731499/civic_addresses/318fb664-d341-44d2-8405-e6bfb9ced6d9':1334 'api.telnyx.com/v2/external_connections/1293384261075731499/phone_numbers':1484 'api.telnyx.com/v2/external_connections/1293384261075731499/phone_numbers/1234567889':1544,1615 'api.telnyx.com/v2/external_connections/1293384261075731499/releases':1689 'api.telnyx.com/v2/external_connections/1293384261075731499/releases/7b6a6449-b055-45a6-81f6-f6f0dffa4cc6':1749 'api.telnyx.com/v2/external_connections/1293384261075731499/uploads':1808,1942 'api.telnyx.com/v2/external_connections/1293384261075731499/uploads/7b6a6449-b055-45a6-81f6-f6f0dffa4cc6':2075 'api.telnyx.com/v2/external_connections/1293384261075731499/uploads/7b6a6449-b055-45a6-81f6-f6f0dffa4cc6/retry':2193 'api.telnyx.com/v2/external_connections/1293384261075731499/uploads/refresh':1996 'api.telnyx.com/v2/external_connections/1293384261075731499/uploads/status':2034 'api.telnyx.com/v2/external_connections/550e8400-e29b-41d4-a716-446655440000/locations/':1436 'api.telnyx.com/v2/external_connections/log_messages':824 'api.telnyx.com/v2/external_connections/log_messages/1293384261075731499':861,898 'api.telnyx.com/v2/media':2252,2321 'api.telnyx.com/v2/media/':2363,2420,2463,2489 'api.telnyx.com/v2/messages':84 'api.telnyx.com/v2/operator_connect/actions/refresh':2560 'api.telnyx.com/v2/recording_transcriptions':2589 'api.telnyx.com/v2/recording_transcriptions/6a09cdc3-8948-47f0-aa62-74ac943d6c58':2646,2702 'api.telnyx.com/v2/recordings':2755 'api.telnyx.com/v2/recordings/':2882,2973 'api.telnyx.com/v2/recordings/actions/delete':2851 'api.telnyx.com/v2/siprec_connectors':3068 'api.telnyx.com/v2/siprec_connectors/':3113,3166,3213 'app':1916,3072,3119,3172 'applic':687,1119 'application/json':97,273,315,443,492,735,1047,1424,1614,1932,1995,2192,2559,2850,3067,3165 'array':625,705,771,830,867,963,1017,1079,1188,1278,1372,1490,1550,1621,1712,1772,1814,1845,1887,1900,2081,2112,2199,2230 'assign':682,1913,1917 'associ':368,810,846,881,1466,1523,1583 'asynchron':1576,2504 'attribut':558,919,1316 'authent':41,59,144 'author':88,226,264,306,348,381,434,483,532,591,726,819,856,893,929,1038,1154,1235,1329,1415,1479,1539,1605,1684,1744,1803,1923,1986,2029,2070,2183,2247,2304,2358,2408,2458,2484,2550,2584,2641,2697,2750,2841,2877,2968,3058,3108,3156,3208 'automat':1659 'avail':1812,2079,2197 'azur':241,284,326 'backend':237,280,322 'background':1976 'backoff':182 'base':659,999 'bash':24,68,223,259,301,343,378,429,478,527,588,721,816,853,888,926,1033,1149,1232,1326,1410,1476,1536,1600,1681,1741,1800,1918,1981,2026,2067,2178,2244,2299,2355,2403,2453,2481,2545,2581,2638,2692,2747,2836,2874,2963,3053,3105,3151,3203 'bearer':89,227,265,307,349,382,435,484,533,592,727,820,857,894,930,1039,1155,1236,1330,1416,1480,1540,1606,1685,1745,1804,1924,1987,2030,2071,2184,2248,2305,2359,2409,2459,2485,2551,2585,2642,2698,2751,2842,2878,2969,3059,3109,3157,3209 'bodi':111,123,154 'boolean':601,607,701,747,753,903,939,945,1013,1055,1061,1164,1170,1445,1947,2001,2567 'call':46,1911,2736,2743,2759,2763,2767,2812,2825,2832,2860,2868,2888,2892,2896,2941,2952,2957,2979,2983,2987,3032 'callcontrol':372 'capabl':1489,1549,1620 'case':116,2136,2146 'chang':1663 'channel':2771,2900,2991 'check':69,128,146,173,202,2155 'citi':1244,1248,1338,1342 'civic':1215,1221,1300,1308,1492,1552,1623,1867,1902 'code':67,72,81,106,118,153,158,1283,1377,1498,1558,1629,1817,2084,2202 'common':156 'compani':1253,1347 'complet':1706,1766,2614,2671,2727,2815,2944,3035 'confer':2775,2811,2904,2940,2995,3031 'configur':242,254,285,296,327,338,571,3050,3146 'connect':221,234,257,277,299,319,341,356,361,367,373,376,389,392,410,427,447,450,468,473,476,496,499,517,522,525,540,545,554,563,610,614,653,658,670,697,739,756,760,809,845,880,907,915,948,952,991,998,1064,1068,1107,1112,1134,1135,1140,1173,1177,1471,1528,1588,1656,1665,1795,1973,2021,2497,2510,2524,2778,2907,2998 'connector':3044,3049,3093,3100,3103,3116,3140,3145,3149,3169,3193,3198,3201,3216 'contact':1143 'content':95,271,313,441,490,733,1045,1422,1612,1930,1993,2190,2256,2325,2369,2426,2557,2848,3065,3163 'content-typ':94,270,312,440,489,732,1044,1421,1611,1929,1992,2189,2556,2847,3064,3162 'control':584,2760,2889,2980 'convers':395,453,502 'count':2004,2011,2040,2044 'countri':1256,1258,1350,1352,1497,1557,1628 'creat':244,249,407,602,650,654,679,748,940,1056,1165,1660,1693,1753,1847,1851,2149,2170,2259,2328,2372,2429,2521,2593,2650,2706,2781,2910,3001,3041,3045,3075,3122,3175 'credenti':211,218,248,253,290,295,332,337,605,751,943,1059,1168 'credentiail':413 'curl':5,9,12,76,224,260,302,344,379,430,479,528,589,722,817,854,889,927,1034,1150,1233,1327,1411,1477,1537,1601,1682,1742,1801,1919,1982,2027,2068,2179,2245,2300,2356,2404,2454,2482,2546,2582,2639,2693,2748,2837,2875,2964,3054,3106,3152,3204 'current':1673,2517 'custom':216,246,251,294,336,568 'd':98,115,736,1048,1425,1933 'data':557,918,1315 'default':1262,1356 'delay':139 'delet':329,333,339,346,514,518,523,530,885,891,1104,1109,1113,1146,1152,2441,2444,2449,2456,2678,2683,2687,2695,2821,2828,2950,2955,2959,2966,3190,3194,3199,3206 'descript':1266,1360 'detail':363,910,1304,1518,1726,2052,2627,2864,3095 'determin':2163 'developers.telnyx.com':2541 'developers.telnyx.com/api-reference/external-connections/list-all-log-messages#list-all-log-messages).':2540 'dialogflow':360,366,409,412,467,472,516,521 'dismiss':869,873 'display':1496,1556,1627 'district':1260,1354 'download':2468,2471,2784,2913,3004 'dual':2774,2903,2994 'durat':2596,2653,2709,2787,2916,3007 'e29b':1432,1938 'e29b-41d4-a716':1431,1937 'echo':107,112,121,125,134,143,150 'emerg':1397,1407,1427,1450 'end':2802,2931,3022 'endpoint':187,547,691,2128,2500 'entri':1844,2111,2229 'enum':238,281,323,611,633,757,779,949,971,1065,1087,1174,1196,1700,1760,1826,1910,2093,2211,2603,2610,2660,2667,2716,2723,2772,2799,2810,2814,2856,2901,2928,2939,2943,2992,3019,3030,3034 'environ':399,457,506 'error':42,51,56,60,64,127,151,157,172,1696,1756,1816,1819,1835,2083,2086,2102,2122,2201,2204,2220 'esac':155 'event':637,642,708,713,783,788,975,980,1020,1025,1091,1096,1200,1205 'exampl':34 'exist':913,996,1307,2141,2630,2867 'expir':1708,1768,2262,2331,2375,2432 'exponenti':181 'export':25 'extern':544,553,562,579,608,652,657,668,695,737,754,808,844,879,906,914,946,990,997,1062,1106,1111,1171,1470,1527,1587,1655,1794,1972,2020,2523 'f':2309,2312,2316,2413,2416 'fail':48,145,1707,1767 'failov':638,709,784,976,1021,1092,1201 'field':130,174 'file':2241,2275,2320,2350,2391,2448,2475 'first':1914 'forc':1958 'format':132,175 'found':169 'gcs':239,282,324 'get':219,374,586,814,850,923,1228,1320,1472,1529,1677,1735,1796,2002,2022,2061,2242,2351,2476,2579,2633,2745,2870,3101 'given':371,1469,1526,1586,1654,1793,1971,2019 'h':87,93,225,263,269,305,311,347,380,433,439,482,488,531,590,725,731,818,855,892,928,1037,1043,1153,1234,1328,1414,1420,1478,1538,1604,1610,1683,1743,1802,1922,1928,1985,1991,2028,2069,2182,2188,2246,2303,2357,2407,2457,2483,2549,2555,2583,2640,2696,2749,2840,2846,2876,2967,3057,3063,3107,3155,3161,3207 'handl':43,63 'hello':104 'host':3078,3125,3178 'hous':1268,1271,1362,1365 'http':70,80,105,117,152 'id':222,235,258,278,300,320,342,357,377,390,393,397,428,448,451,455,477,497,500,504,526,541,615,675,761,852,887,925,953,1008,1069,1148,1178,1230,1264,1275,1322,1325,1358,1369,1401,1404,1409,1429,1440,1447,1452,1474,1494,1501,1504,1510,1531,1535,1554,1561,1564,1570,1591,1595,1598,1625,1632,1635,1641,1666,1679,1715,1718,1737,1740,1775,1778,1798,1823,1837,1840,1869,1872,1886,1892,1896,1904,1907,1935,1949,1979,2024,2063,2066,2090,2104,2107,2158,2173,2176,2208,2222,2225,2599,2607,2637,2656,2664,2691,2712,2720,2761,2765,2769,2776,2779,2792,2873,2886,2890,2894,2898,2905,2908,2921,2962,2977,2981,2985,2989,2996,2999,3012 'import':183 'in-progress':2611,2668,2724 'inbound':617,702,763,955,1014,1071,1180 'includ':1861 'inform':214,2345 'initi':2794,2923,3014 'insid':555,916,1313 'instal':10,16 'insuffici':164 'int32':2598,2655,2711,2789,2918,3009 'integ':648,719,794,986,1031,1102,1211,2041,2045,2298,2402,3083,3130,3183 'integr':4,8,574,581,1141,2498,2511,2535 'invalid':160 'key':28,31,39,92,149,162,230,268,310,352,385,438,487,536,595,730,823,860,897,933,1042,1158,1239,1333,1419,1483,1543,1609,1688,1748,1807,1927,1990,2033,2074,2187,2251,2308,2362,2412,2462,2488,2554,2588,2645,2701,2754,2845,2881,2972,3062,3112,3160,3212 'leg':2764,2893,2984 'limit':53,136,178 'linux':19 'list':186,542,550,796,802,1213,1454,1460,1643,1648,1780,1786,2232,2237,2568,2574,2734,2740,2823,2830 'locat':1218,1224,1263,1277,1312,1357,1371,1394,1403,1439,1446,1500,1560,1597,1631,1822,1871,1906,2089,2207 'log':798,804,828,836,840,865,871,875,2538 'maco':18 'make':2502 'maximum':1879 'may':1114,2148 'media':2234,2240,2265,2272,2274,2290,2293,2310,2317,2334,2342,2349,2353,2366,2378,2386,2390,2394,2397,2414,2423,2435,2443,2447,2451,2466,2470,2474,2478,2492 'messag':799,805,829,837,841,866,872,876,1697,1757,1820,2087,2205,2539,2564 'meta':832 'meta.total':203 'microsoft':1226,1675,1857,2513 'milli':2597,2654,2710,2788,2917,3008 'mission':583 'must':1873 'n':79 'name':1254,1293,1348,1387,2266,2294,2318,2335,2354,2367,2379,2395,2424,2436,2452,2467,2479,2493,3080,3104,3117,3127,3150,3170,3180,3202,3217 'navig':200 'need':2531 'network':50 'new':656,1853,2151,2166,2522,3047 'note':184 'null':649,720,795,987,1032,1103,1212 'number':193,684,1125,1269,1272,1363,1366,1457,1465,1503,1507,1515,1522,1534,1563,1567,1575,1582,1594,1634,1638,1670,1711,1734,1771,1863,1882,1885,1895,1934,2039,2060 'object':243,286,328,618,620,703,764,766,831,833,868,956,958,1015,1072,1074,1181,1183,1279,1373,1713,1773,1846,2113,2231,2786,2915,3006 'ok':2857 'one':1865 'oper':613,759,951,1067,1133,1139,1176,2496,2509 'option':699,1011,1596,1897,2292,2396 'order':2043 'outbound':619,672,698,741,765,957,1010,1049,1073,1182 'page':192,195,201,204 'pagin':185,189 'paramet':198,662,1002 'parti':1915 'partial':1832,2099,2217 'partner':577 'patch':1006,1036,1399,1413,1589,1603 'pend':1701,1703,1761,1763,1827,1829,1966,2006,2014,2038,2042,2094,2096,2212,2214 'perman':1108,2682,2827,2954 'permiss':165 'phone':683,1124,1456,1464,1514,1521,1533,1574,1581,1593,1669,1733,1862,1881,2059 'pleas':1142,2154 'port':3082,3129,3182 'portal':585 'post':83,255,262,425,432,692,724,1890,1921,1977,1984,2171,2181,2287,2302,2543,2548,2834,2839,3051,3056 'postal':1280,1374 'pre':15 'pre-instal':14 'prevent':1116 'process':2126 'product':66 'profil':396,454,503,674 'progress':1705,1765,1831,2098,2216,2613,2670,2726 'provid':1875 'provinc':1290,1384 'put':297,304,474,481,2392,2406,3147,3154 'queri':197 'rate':52,135,177 'reattempt':2139 'recheck':1960 'record':401,459,508,621,767,959,1075,1184,1285,1379,2570,2577,2601,2604,2606,2623,2631,2635,2658,2661,2663,2680,2685,2689,2714,2717,2719,2737,2744,2797,2800,2801,2805,2826,2833,2861,2869,2872,2885,2926,2929,2930,2934,2953,2958,2961,2976,3017,3020,3021,3025,3084,3131,3184 'refresh':1951,2495,2507 'releas':1645,1651,1722,1729,1739 'remov':1137 'report':2533 'request':666,1005,1723,1730,1783,1790,1850,1855,1957,1968,2008,2016,2049,2056,2117,2133,2143,2153,2168,2505 'requir':129,677,694,1009,1405,1894,2289 'resourc':167 'respons':74,75,108,113,207,561,922,1319,2161 'result':190,2536 'retri':137,179,2114,2130 'retriev':208,358,800,834,838,904,1298,1512,1720,2046,2340,2621,2625,2858,2862,3090 'return':188,212,236,279,321,362,391,449,498,548,599,745,827,864,901,908,937,1053,1162,1219,1243,1302,1337,1441,1458,1487,1516,1547,1618,1646,1692,1724,1752,1784,1811,1945,1999,2009,2037,2050,2078,2196,2235,2255,2324,2343,2368,2425,2563,2572,2592,2649,2705,2738,2758,2854,2887,2978,3071,3094,3118,3171 's3':240,283,325 'save':411 'seamless':570 'sec':647,718,793,985,1030,1101,1210,2297,2314,2401,2418 'sed':114 'sent':663 'servic':404,424,462,511,2286 'session':2768,2897,2988 'set':993,1578 'setup':23 'singl':2773,2902,2993 'sip':3,7,572,609,669,696,738,755,947,1063,1172 'siprec':3043,3048,3092,3099,3139,3144,3192,3197 'size':196 'skill' 'skill-telnyx-sip-integrations-curl' 'sleep':140 'sourc':2809,2938,3029 'source-team-telnyx' 'start':2806,2935,3026 'state':1288,1382 'static':1396,1406,1426,1449 'status':71,1699,1759,1825,1953,1963,2092,2210,2609,2666,2722,2813,2855,2942,3033 'storag':217,247,252 'store':210,289,293,331,335,359,466,471,515,520,2239,2341,2348,2385,2389,2442,2446,2469,2473,3098,3143,3196 'street':1292,1295,1386,1389 'string':394,398,400,403,406,452,456,458,461,464,501,505,507,510,513,604,616,623,626,629,706,750,762,769,772,775,942,954,961,964,967,1018,1058,1070,1077,1080,1083,1167,1179,1186,1189,1192,1247,1252,1255,1257,1261,1267,1270,1274,1284,1287,1291,1294,1297,1341,1346,1349,1351,1355,1361,1364,1368,1378,1381,1385,1388,1391,1491,1499,1505,1508,1551,1559,1565,1568,1622,1630,1636,1639,1695,1698,1755,1758,1815,1818,1821,1901,2082,2085,2088,2200,2203,2206,2258,2261,2264,2267,2270,2295,2327,2330,2333,2336,2339,2371,2374,2377,2380,2383,2399,2428,2431,2434,2437,2440,2565,2595,2600,2608,2617,2620,2652,2657,2665,2674,2677,2708,2713,2721,2730,2733,2762,2766,2770,2777,2780,2783,2791,2793,2796,2804,2808,2817,2820,2891,2895,2899,2906,2909,2912,2920,2922,2925,2933,2937,2946,2949,2982,2986,2990,2997,3000,3003,3011,3013,3016,3024,3028,3037,3040,3074,3077,3079,3081,3086,3089,3121,3124,3126,3128,3133,3136,3174,3177,3179,3181,3186,3189 'subdomain':3073,3120,3173 'success':122,902,1833,1834,1946,2000,2100,2101,2218,2219,2566 'suffix':1273,1296,1367,1390 'suggest':1444 'support':1145 'tag':624,704,770,962,1016,1078,1187 'tail':109 'team':1227,1676,1858,2514 'telephon':1506,1566,1637,1710,1770 'telnyx':2,6,26,37,90,147,228,266,308,350,383,415,423,436,485,534,567,576,593,728,821,858,895,931,1040,1144,1156,1237,1331,1417,1481,1541,1607,1686,1746,1805,1925,1988,2031,2072,2185,2249,2277,2285,2306,2360,2410,2460,2486,2552,2586,2643,2699,2752,2843,2879,2970,3060,3110,3158,3210 'telnyx-sip-integrations-curl':1 'tenant':1714,1774,1836,2103,2221 'text':11,103,2616,2673,2729 'ticket':1509,1569,1640,1717,1777,1839,1948,2065,2106,2157,2175,2224 'timeout':646,717,792,984,1029,1100,1209 'tn':1842,2109,2227 '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' 'town':1246,1250,1340,1344 'transcript':2571,2578,2605,2615,2624,2632,2636,2662,2672,2681,2686,2690,2718,2728 'trunk':573 'ttl':2296,2313,2400,2417 'type':96,272,314,402,442,460,491,509,622,734,768,960,1046,1076,1185,1286,1380,1423,1613,1931,1994,2191,2257,2326,2370,2427,2558,2602,2659,2715,2798,2849,2927,3018,3066,3085,3132,3164,3185 'unknown':1709,1769 'updat':287,291,465,469,627,773,965,988,992,1081,1190,1392,1572,1577,2268,2337,2381,2384,2387,2438,2618,2675,2731,2818,2947,3038,3087,3134,3137,3141,3187 'upload':1702,1762,1782,1789,1828,1843,1849,1854,1956,1967,2007,2015,2048,2055,2095,2110,2116,2125,2132,2142,2152,2167,2213,2228,2233,2271,2273 'uri':640,644,711,715,786,790,978,982,1023,1027,1094,1098,1203,1207 'url':639,643,710,714,785,789,977,981,1022,1026,1093,1097,1202,1206,2291,2398,2785,2914,3005 'usag':1813,1899,1909,2080,2198 'use':36,191,420,565,688,1122,2282 'user':1912,2518,2527 'uuid':1265,1276,1359,1370,1448,1453,1495,1502,1511,1555,1562,1571,1599,1626,1633,1642,1716,1719,1776,1779,1824,1838,1841,1905,1908,1950,2091,2105,2108,2209,2223,2226 'valid':55,126,171 'version':632,778,970,1086,1195 'voic':580,673 'w':78 'webhook':630,636,641,645,707,712,716,776,782,787,791,968,974,979,983,1019,1024,1028,1084,1090,1095,1099,1193,1199,1204,1208 'window':21 'x':82,261,303,345,431,480,529,723,890,1035,1151,1412,1602,1920,1983,2180,2301,2405,2455,2547,2694,2838,2965,3055,3153,3205 'zip':1282,1376 'zoom':612,740,758,950,1066,1175","prices":[{"id":"084c3c0b-ff9e-4b18-b414-b84303d4b5d0","listingId":"19cd3421-f0a9-4576-a614-521090ae165c","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:43.889Z"}],"sources":[{"listingId":"19cd3421-f0a9-4576-a614-521090ae165c","source":"github","sourceId":"team-telnyx/ai/telnyx-sip-integrations-curl","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-sip-integrations-curl","isPrimary":false,"firstSeenAt":"2026-04-18T22:07:43.889Z","lastSeenAt":"2026-04-22T06:54:47.741Z"}],"details":{"listingId":"19cd3421-f0a9-4576-a614-521090ae165c","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-sip-integrations-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":"bc875948ea660c71b496e2dc07aa85abedb15a97","skill_md_path":"skills/telnyx-sip-integrations-curl/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-sip-integrations-curl"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-sip-integrations-curl","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-sip-integrations-curl"},"updatedAt":"2026-04-22T06:54:47.741Z"}}