{"id":"0ce24977-ed16-4b57-a51a-e5d1522813c6","shortId":"wkYUDu","kind":"skill","title":"telnyx-voice-conferencing-curl","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Voice Conferencing - 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## Enqueue call\n\nPut the call in a queue.\n\n`POST /calls/{call_control_id}/actions/enqueue` — Required: `queue_name`\n\nOptional: `client_state` (string), `command_id` (string), `keep_after_hangup` (boolean), `max_size` (integer), `max_wait_time_secs` (integer)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"queue_name\": \"tier_1_support\"\n}' \\\n  \"https://api.telnyx.com/v2/calls/v3:550e8400-e29b-41d4-a716-446655440000_gRU1OGRkYQ/actions/enqueue\"\n```\n\nReturns: `result` (string)\n\n## Remove call from a queue\n\nRemoves the call from a queue.\n\n`POST /calls/{call_control_id}/actions/leave_queue`\n\nOptional: `client_state` (string), `command_id` (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/calls/v3:550e8400-e29b-41d4-a716-446655440000_gRU1OGRkYQ/actions/leave_queue\"\n```\n\nReturns: `result` (string)\n\n## List conferences\n\nLists conferences. Conferences are created on demand, and will expire after all participants have left the conference or after 4 hours regardless of the number of active participants. Conferences are listed in descending order by `expires_at`.\n\n`GET /conferences`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/conferences\"\n```\n\nReturns: `connection_id` (string), `created_at` (string), `end_reason` (enum: all_left, ended_via_api, host_left, time_exceeded), `ended_by` (object), `expires_at` (string), `id` (string), `name` (string), `record_type` (enum: conference), `region` (string), `status` (enum: init, in_progress, completed), `updated_at` (string)\n\n## Create conference\n\nCreate a conference from an existing call leg using a `call_control_id` and a conference name. Upon creating the conference, the call will be automatically bridged to the conference. Conferences will expire after all participants have left the conference or after 4 hours regardless of the number of active participants.\n\n`POST /conferences` — Required: `call_control_id`, `name`\n\nOptional: `beep_enabled` (enum: always, never, on_enter, on_exit), `client_state` (string), `comfort_noise` (boolean), `command_id` (string), `duration_minutes` (integer), `hold_audio_url` (string), `hold_media_name` (string), `max_participants` (integer), `region` (enum: Australia, Europe, Middle East, US), `start_conference_on_create` (boolean)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"call_control_id\": \"v2:T02llQxIyaRkhfRKxgAP8nY511EhFLizdvdUKJiSw8d6A9BborherQczRrZvZakpWxBlpw48KyZQ==\",\n  \"name\": \"Business\"\n}' \\\n  \"https://api.telnyx.com/v2/conferences\"\n```\n\nReturns: `connection_id` (string), `created_at` (string), `end_reason` (enum: all_left, ended_via_api, host_left, time_exceeded), `ended_by` (object), `expires_at` (string), `id` (string), `name` (string), `record_type` (enum: conference), `region` (string), `status` (enum: init, in_progress, completed), `updated_at` (string)\n\n## List conference participants\n\nLists conference participants\n\n`GET /conferences/{conference_id}/participants`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/participants\"\n```\n\nReturns: `call_control_id` (string), `call_leg_id` (string), `conference` (object), `created_at` (string), `end_conference_on_exit` (boolean), `id` (string), `muted` (boolean), `on_hold` (boolean), `record_type` (enum: participant), `soft_end_conference_on_exit` (boolean), `status` (enum: joining, joined, left), `updated_at` (string), `whisper_call_control_ids` (array[string])\n\n## Retrieve a conference\n\nRetrieve an existing conference\n\n`GET /conferences/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `connection_id` (string), `created_at` (string), `end_reason` (enum: all_left, ended_via_api, host_left, time_exceeded), `ended_by` (object), `expires_at` (string), `id` (string), `name` (string), `record_type` (enum: conference), `region` (string), `status` (enum: init, in_progress, completed), `updated_at` (string)\n\n## End a conference\n\nEnd a conference and terminate all active participants.\n\n`POST /conferences/{id}/actions/end`\n\nOptional: `command_id` (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/conferences/550e8400-e29b-41d4-a716-446655440000/actions/end\"\n```\n\nReturns: `result` (string)\n\n## Gather DTMF using audio prompt in a conference\n\nPlay an audio file to a specific conference participant and gather DTMF input.\n\n`POST /conferences/{id}/actions/gather_using_audio` — Required: `call_control_id`\n\nOptional: `audio_url` (string), `client_state` (string), `gather_id` (string), `initial_timeout_millis` (integer), `inter_digit_timeout_millis` (integer), `invalid_audio_url` (string), `invalid_media_name` (string), `maximum_digits` (integer), `maximum_tries` (integer), `media_name` (string), `minimum_digits` (integer), `stop_playback_on_dtmf` (boolean), `terminating_digit` (string), `timeout_millis` (integer), `valid_digits` (string)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"call_control_id\": \"v3:MdI91X4lWFEs7IgbBEOT9M4AigoY08M0WWZFISt1Yw2axZ_IiE4pqg\"\n}' \\\n  \"https://api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/gather_using_audio\"\n```\n\nReturns: `result` (string)\n\n## Hold conference participants\n\nHold a list of participants in a conference call\n\n`POST /conferences/{id}/actions/hold`\n\nOptional: `audio_url` (string), `call_control_ids` (array[string]), `media_name` (string), `region` (enum: Australia, Europe, Middle East, US)\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/conferences/550e8400-e29b-41d4-a716-446655440000/actions/hold\"\n```\n\nReturns: `result` (string)\n\n## Join a conference\n\nJoin an existing call leg to a conference. Issue the Join Conference command with the conference ID in the path and the `call_control_id` of the leg you wish to join to the conference as an attribute. The conference can have up to a certain amount of active participants, as set by the `max_participants` parameter in conference creation request.\n\n`POST /conferences/{id}/actions/join` — Required: `call_control_id`\n\nOptional: `beep_enabled` (enum: always, never, on_enter, on_exit), `client_state` (string), `command_id` (string), `end_conference_on_exit` (boolean), `hold` (boolean), `hold_audio_url` (string), `hold_media_name` (string), `mute` (boolean), `region` (enum: Australia, Europe, Middle East, US), `soft_end_conference_on_exit` (boolean), `start_conference_on_enter` (boolean), `supervisor_role` (enum: barge, monitor, none, whisper), `whisper_call_control_ids` (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  \"call_control_id\": \"v2:T02llQxIyaRkhfRKxgAP8nY511EhFLizdvdUKJiSw8d6A9BborherQczRrZvZakpWxBlpw48KyZQ==\"\n}' \\\n  \"https://api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/join\"\n```\n\nReturns: `result` (string)\n\n## Leave a conference\n\nRemoves a call leg from a conference and moves it back to parked state. **Expected Webhooks:**\n\n- `conference.participant.left`\n\n`POST /conferences/{id}/actions/leave` — Required: `call_control_id`\n\nOptional: `beep_enabled` (enum: always, never, on_enter, on_exit), `command_id` (string), `region` (enum: Australia, Europe, Middle East, US)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"call_control_id\": \"f91269aa-61d1-417f-97b3-10e020e8bc47\"\n}' \\\n  \"https://api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/leave\"\n```\n\nReturns: `result` (string)\n\n## Mute conference participants\n\nMute a list of participants in a conference call\n\n`POST /conferences/{id}/actions/mute`\n\nOptional: `call_control_ids` (array[string]), `region` (enum: Australia, Europe, Middle East, US)\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/conferences/550e8400-e29b-41d4-a716-446655440000/actions/mute\"\n```\n\nReturns: `result` (string)\n\n## Play audio to conference participants\n\nPlay audio to all or some participants on a conference call.\n\n`POST /conferences/{id}/actions/play`\n\nOptional: `audio_url` (string), `call_control_ids` (array[string]), `loop` (string), `media_name` (string), `region` (enum: Australia, Europe, Middle East, US)\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/conferences/550e8400-e29b-41d4-a716-446655440000/actions/play\"\n```\n\nReturns: `result` (string)\n\n## Conference recording pause\n\nPause conference recording.\n\n`POST /conferences/{id}/actions/record_pause`\n\nOptional: `command_id` (string), `recording_id` (string), `region` (enum: Australia, Europe, Middle East, US)\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/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_pause\"\n```\n\nReturns: `result` (string)\n\n## Conference recording resume\n\nResume conference recording.\n\n`POST /conferences/{id}/actions/record_resume`\n\nOptional: `command_id` (string), `recording_id` (string), `region` (enum: Australia, Europe, Middle East, US)\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/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_resume\"\n```\n\nReturns: `result` (string)\n\n## Conference recording start\n\nStart recording the conference. Recording will stop on conference end, or via the Stop Recording command. **Expected Webhooks:**\n\n- `conference.recording.saved`\n\n`POST /conferences/{id}/actions/record_start` — Required: `format`\n\nOptional: `channels` (enum: single, dual), `command_id` (string), `custom_file_name` (string), `play_beep` (boolean), `region` (enum: Australia, Europe, Middle East, US), `trim` (enum: trim-silence)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"format\": \"mp3\"\n}' \\\n  \"https://api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_start\"\n```\n\nReturns: `result` (string)\n\n## Conference recording stop\n\nStop recording the conference. **Expected Webhooks:**\n\n- `conference.recording.saved`\n\n`POST /conferences/{id}/actions/record_stop`\n\nOptional: `client_state` (string), `command_id` (string), `recording_id` (uuid), `region` (enum: Australia, Europe, Middle East, US)\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/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_stop\"\n```\n\nReturns: `result` (string)\n\n## Send DTMF to conference participants\n\nSend DTMF tones to one or more conference participants.\n\n`POST /conferences/{id}/actions/send_dtmf` — Required: `digits`\n\nOptional: `call_control_ids` (array[string]), `client_state` (string), `duration_millis` (integer)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"digits\": \"1234#\"\n}' \\\n  \"https://api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/send_dtmf\"\n```\n\nReturns: `result` (string)\n\n## Speak text to conference participants\n\nConvert text to speech and play it to all or some participants.\n\n`POST /conferences/{id}/actions/speak` — Required: `payload`, `voice`\n\nOptional: `call_control_ids` (array[string]), `command_id` (string), `language` (enum: arb, cmn-CN, cy-GB, da-DK, de-DE, en-AU, en-GB, en-GB-WLS, en-IN, en-US, es-ES, es-MX, es-US, fr-CA, fr-FR, hi-IN, is-IS, it-IT, ja-JP, ko-KR, nb-NO, nl-NL, pl-PL, pt-BR, pt-PT, ro-RO, ru-RU, sv-SE, tr-TR), `payload_type` (enum: text, ssml), `region` (enum: Australia, Europe, Middle East, US), `voice_settings` (object)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"payload\": \"Say this to participants\",\n  \"voice\": \"Telnyx.KokoroTTS.af\"\n}' \\\n  \"https://api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/speak\"\n```\n\nReturns: `result` (string)\n\n## Stop audio being played on the conference\n\nStop audio being played to all or some participants on a conference call.\n\n`POST /conferences/{id}/actions/stop`\n\nOptional: `call_control_ids` (array[string]), `region` (enum: Australia, Europe, Middle East, US)\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/conferences/550e8400-e29b-41d4-a716-446655440000/actions/stop\"\n```\n\nReturns: `result` (string)\n\n## Unhold conference participants\n\nUnhold a list of participants in a conference call\n\n`POST /conferences/{id}/actions/unhold` — Required: `call_control_ids`\n\nOptional: `region` (enum: Australia, Europe, Middle East, US)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"call_control_ids\": [\n    \"v3:550e8400-e29b-41d4-a716-446655440000_gRU1OGRkYQ\"\n  ]\n}' \\\n  \"https://api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/unhold\"\n```\n\nReturns: `result` (string)\n\n## Unmute conference participants\n\nUnmute a list of participants in a conference call\n\n`POST /conferences/{id}/actions/unmute`\n\nOptional: `call_control_ids` (array[string]), `region` (enum: Australia, Europe, Middle East, US)\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/conferences/550e8400-e29b-41d4-a716-446655440000/actions/unmute\"\n```\n\nReturns: `result` (string)\n\n## Update conference participant\n\nUpdate conference participant supervisor_role\n\n`POST /conferences/{id}/actions/update` — Required: `call_control_id`, `supervisor_role`\n\nOptional: `command_id` (string), `region` (enum: Australia, Europe, Middle East, US), `whisper_call_control_ids` (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  \"call_control_id\": \"v2:T02llQxIyaRkhfRKxgAP8nY511EhFLizdvdUKJiSw8d6A9BborherQczRrZvZakpWxBlpw48KyZQ==\",\n  \"supervisor_role\": \"whisper\"\n}' \\\n  \"https://api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/update\"\n```\n\nReturns: `result` (string)\n\n## Retrieve a conference participant\n\nRetrieve details of a specific conference participant by their ID or label.\n\n`GET /conferences/{id}/participants/{participant_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/participants/{participant_id}\"\n```\n\nReturns: `call_control_id` (string), `call_leg_id` (string), `conference_id` (string), `created_at` (date-time), `end_conference_on_exit` (boolean), `id` (string), `label` (string), `muted` (boolean), `on_hold` (boolean), `soft_end_conference_on_exit` (boolean), `status` (enum: joining, joined, left), `updated_at` (date-time), `whisper_call_control_ids` (array[string])\n\n## Update a conference participant\n\nUpdate properties of a conference participant.\n\n`PATCH /conferences/{id}/participants/{participant_id}`\n\nOptional: `beep_enabled` (enum: always, never, on_enter, on_exit), `end_conference_on_exit` (boolean), `soft_end_conference_on_exit` (boolean)\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/conferences/550e8400-e29b-41d4-a716-446655440000/participants/{participant_id}\"\n```\n\nReturns: `call_control_id` (string), `call_leg_id` (string), `conference_id` (string), `created_at` (date-time), `end_conference_on_exit` (boolean), `id` (string), `label` (string), `muted` (boolean), `on_hold` (boolean), `soft_end_conference_on_exit` (boolean), `status` (enum: joining, joined, left), `updated_at` (date-time), `whisper_call_control_ids` (array[string])\n\n## List queues\n\nList all queues for the authenticated user.\n\n`GET /queues`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/queues\"\n```\n\nReturns: `average_wait_time_secs` (integer), `created_at` (string), `current_size` (integer), `id` (string), `max_size` (integer), `name` (string), `record_type` (enum: queue), `updated_at` (string)\n\n## Create a queue\n\nCreate a new call queue.\n\n`POST /queues` — Required: `queue_name`\n\nOptional: `max_size` (integer)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"queue_name\": \"tier_1_support\"\n}' \\\n  \"https://api.telnyx.com/v2/queues\"\n```\n\nReturns: `average_wait_time_secs` (integer), `created_at` (string), `current_size` (integer), `id` (string), `max_size` (integer), `name` (string), `record_type` (enum: queue), `updated_at` (string)\n\n## Retrieve a call queue\n\nRetrieve an existing call queue\n\n`GET /queues/{queue_name}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/queues/{queue_name}\"\n```\n\nReturns: `average_wait_time_secs` (integer), `created_at` (string), `current_size` (integer), `id` (string), `max_size` (integer), `name` (string), `record_type` (enum: queue), `updated_at` (string)\n\n## Update a queue\n\nUpdate properties of an existing call queue.\n\n`POST /queues/{queue_name}` — Required: `max_size`\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"max_size\": 200\n}' \\\n  \"https://api.telnyx.com/v2/queues/{queue_name}\"\n```\n\nReturns: `average_wait_time_secs` (integer), `created_at` (string), `current_size` (integer), `id` (string), `max_size` (integer), `name` (string), `record_type` (enum: queue), `updated_at` (string)\n\n## Delete a queue\n\nDelete an existing call queue.\n\n`DELETE /queues/{queue_name}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/queues/{queue_name}\"\n```\n\n## Retrieve calls from a queue\n\nRetrieve the list of calls in an existing queue\n\n`GET /queues/{queue_name}/calls`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/queues/{queue_name}/calls\"\n```\n\nReturns: `call_control_id` (string), `call_leg_id` (string), `call_session_id` (string), `connection_id` (string), `enqueued_at` (string), `from` (string), `is_alive` (boolean), `queue_id` (string), `queue_position` (integer), `record_type` (enum: queue_call), `to` (string), `wait_time_secs` (integer)\n\n## Retrieve a call from a queue\n\nRetrieve an existing call from an existing queue\n\n`GET /queues/{queue_name}/calls/{call_control_id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/queues/{queue_name}/calls/v3:550e8400-e29b-41d4-a716-446655440000_gRU1OGRkYQ\"\n```\n\nReturns: `call_control_id` (string), `call_leg_id` (string), `call_session_id` (string), `connection_id` (string), `enqueued_at` (string), `from` (string), `is_alive` (boolean), `queue_id` (string), `queue_position` (integer), `record_type` (enum: queue_call), `to` (string), `wait_time_secs` (integer)\n\n## Update queued call\n\nUpdate queued call's keep_after_hangup flag\n\n`PATCH /queues/{queue_name}/calls/{call_control_id}`\n\nOptional: `keep_after_hangup` (boolean)\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/queues/{queue_name}/calls/v3:550e8400-e29b-41d4-a716-446655440000_gRU1OGRkYQ\"\n```\n\n## Force remove a call from a queue\n\nRemoves an inactive call from a queue. If the call is no longer active, use this command to remove it from the queue.\n\n`DELETE /queues/{queue_name}/calls/{call_control_id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/queues/{queue_name}/calls/v3:550e8400-e29b-41d4-a716-446655440000_gRU1OGRkYQ\"\n```\n\n---\n\n## Webhooks\n\n### Webhook Verification\n\nTelnyx signs webhooks with Ed25519. Each request includes `telnyx-signature-ed25519`\nand `telnyx-timestamp` headers. Always verify signatures in production:\n\n```bash\n# Telnyx signs webhooks with Ed25519 (asymmetric — NOT HMAC/Standard Webhooks).\n# Headers sent with each webhook:\n#   telnyx-signature-ed25519: base64-encoded Ed25519 signature\n#   telnyx-timestamp: Unix timestamp (reject if >5 minutes old for replay protection)\n#\n# Get your public key from: Telnyx Portal > Account Settings > Keys & Credentials\n# Use the Telnyx SDK in your language for verification (client.webhooks.unwrap).\n# Your endpoint MUST return 2xx within 2 seconds or Telnyx will retry (up to 3 attempts).\n# Configure a failover URL in Telnyx Portal for additional reliability.\n```\n\nThe following webhook events are sent to your configured webhook URL.\nAll webhooks include `telnyx-timestamp` and `telnyx-signature-ed25519` headers for Ed25519 signature verification. Use `client.webhooks.unwrap()` to verify.\n\n| Event | Description |\n|-------|-------------|\n| `callEnqueued` | Call Enqueued |\n| `callLeftQueue` | Call Left Queue |\n| `conferenceCreated` | Conference Created |\n| `conferenceEnded` | Conference Ended |\n| `conferenceFloorChanged` | Conference Floor Changed |\n| `conferenceParticipantJoined` | Conference Participant Joined |\n| `conferenceParticipantLeft` | Conference Participant Left |\n| `conferenceParticipantPlaybackEnded` | Conference Participant Playback Ended |\n| `conferenceParticipantPlaybackStarted` | Conference Participant Playback Started |\n| `conferenceParticipantSpeakEnded` | Conference Participant Speak Ended |\n| `conferenceParticipantSpeakStarted` | Conference Participant Speak Started |\n| `conferencePlaybackEnded` | Conference Playback Ended |\n| `conferencePlaybackStarted` | Conference Playback Started |\n| `conferenceRecordingSaved` | Conference Recording Saved |\n| `conferenceSpeakEnded` | Conference Speak Ended |\n| `conferenceSpeakStarted` | Conference Speak Started |\n\n### Webhook payload fields\n\n**`callEnqueued`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: call.enqueued | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n| `data.payload.call_control_id` | string | Call ID used to issue commands via Call Control API. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.call_leg_id` | string | ID that is unique to the call and can be used to correlate webhook events. |\n| `data.payload.call_session_id` | string | ID that is unique to the call session and can be used to correlate webhook events. |\n| `data.payload.client_state` | string | State received from a command. |\n| `data.payload.queue` | string | The name of the queue |\n| `data.payload.current_position` | integer | Current position of the call in the queue. |\n| `data.payload.queue_avg_wait_time_secs` | integer | Average time call spends in the queue in seconds. |\n\n**`callLeftQueue`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: call.dequeued | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n| `data.payload.call_control_id` | string | Call ID used to issue commands via Call Control API. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.call_leg_id` | string | ID that is unique to the call and can be used to correlate webhook events. |\n| `data.payload.call_session_id` | string | ID that is unique to the call session and can be used to correlate webhook events. |\n| `data.payload.client_state` | string | State received from a command. |\n| `data.payload.queue` | string | The name of the queue |\n| `data.payload.queue_position` | integer | Last position of the call in the queue. |\n| `data.payload.reason` | enum: bridged, bridging-in-process, hangup, leave, timeout | The reason for leaving the queue |\n| `data.payload.wait_time_secs` | integer | Time call spent in the queue in seconds. |\n\n**`conferenceCreated`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.created | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.payload.call_control_id` | string | Call ID used to issue commands via Call Control API. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.call_leg_id` | string | ID that is unique to the call and can be used to correlate webhook events. |\n| `data.payload.call_session_id` | string | ID that is unique to the call session and can be used to correlate webhook events. |\n| `data.payload.client_state` | string | State received from a command. |\n| `data.payload.conference_id` | string | Conference ID that the participant joined. |\n| `data.payload.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n\n**`conferenceEnded`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.ended | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.payload.call_control_id` | string | Call ID used to issue commands via Call Control API. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.call_leg_id` | string | ID that is unique to the call and can be used to correlate webhook events. |\n| `data.payload.call_session_id` | string | ID that is unique to the call session and can be used to correlate webhook events. |\n| `data.payload.client_state` | string | State received from a command. |\n| `data.payload.conference_id` | string | Conference ID that the participant joined. |\n| `data.payload.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n| `data.payload.reason` | enum: all_left, host_left, time_exceeded | Reason the conference ended. |\n\n**`conferenceFloorChanged`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `record_type` | enum: event | Identifies the type of the resource. |\n| `event_type` | enum: conference.floor.changed | The type of event being delivered. |\n| `id` | uuid | Identifies the type of resource. |\n| `payload.call_control_id` | string | Call Control ID of the new speaker. |\n| `payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `payload.call_leg_id` | string | Call Leg ID of the new speaker. |\n| `payload.call_session_id` | string | Call Session ID of the new speaker. |\n| `payload.client_state` | string | State received from a command. |\n| `payload.conference_id` | string | Conference ID that had a speaker change event. |\n| `payload.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n\n**`conferenceParticipantJoined`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.participant.joined | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n| `data.payload.call_control_id` | string | Call ID used to issue commands via Call Control API. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.call_leg_id` | string | ID that is unique to the call and can be used to correlate webhook events. |\n| `data.payload.call_session_id` | string | ID that is unique to the call session and can be used to correlate webhook events. |\n| `data.payload.client_state` | string | State received from a command. |\n| `data.payload.conference_id` | string | Conference ID that the participant joined. |\n\n**`conferenceParticipantLeft`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.participant.left | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n| `data.payload.call_control_id` | string | Call ID used to issue commands via Call Control API. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.call_leg_id` | string | ID that is unique to the call and can be used to correlate webhook events. |\n| `data.payload.call_session_id` | string | ID that is unique to the call session and can be used to correlate webhook events. |\n| `data.payload.client_state` | string | State received from a command. |\n| `data.payload.conference_id` | string | Conference ID that the participant joined. |\n\n**`conferenceParticipantPlaybackEnded`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.participant.playback.ended | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.payload.call_control_id` | string | Participant's call ID used to issue commands via Call Control API. |\n| `data.payload.call_leg_id` | string | ID that is unique to the call and can be used to correlate webhook events. |\n| `data.payload.call_session_id` | string | ID that is unique to the call session and can be used to correlate webhook events. |\n| `data.payload.client_state` | string | State received from a command. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.creator_call_session_id` | string | ID that is unique to the call session that started the conference. |\n| `data.payload.conference_id` | string | ID of the conference the text was spoken in. |\n| `data.payload.media_url` | string | The audio URL being played back, if audio_url has been used to start. |\n| `data.payload.media_name` | string | The name of the audio media file being played back, if media_name has been used to start. |\n| `data.payload.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n\n**`conferenceParticipantPlaybackStarted`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.participant.playback.started | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.payload.call_control_id` | string | Participant's call ID used to issue commands via Call Control API. |\n| `data.payload.call_leg_id` | string | ID that is unique to the call and can be used to correlate webhook events. |\n| `data.payload.call_session_id` | string | ID that is unique to the call session and can be used to correlate webhook events. |\n| `data.payload.client_state` | string | State received from a command. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.creator_call_session_id` | string | ID that is unique to the call session that started the conference. |\n| `data.payload.conference_id` | string | ID of the conference the text was spoken in. |\n| `data.payload.media_url` | string | The audio URL being played back, if audio_url has been used to start. |\n| `data.payload.media_name` | string | The name of the audio media file being played back, if media_name has been used to start. |\n| `data.payload.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n\n**`conferenceParticipantSpeakEnded`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.participant.speak.ended | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.payload.call_control_id` | string | Participant's call ID used to issue commands via Call Control API. |\n| `data.payload.call_leg_id` | string | ID that is unique to the call and can be used to correlate webhook events. |\n| `data.payload.call_session_id` | string | ID that is unique to the call session and can be used to correlate webhook events. |\n| `data.payload.client_state` | string | State received from a command. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.creator_call_session_id` | string | ID that is unique to the call session that started the conference. |\n| `data.payload.conference_id` | string | ID of the conference the text was spoken in. |\n| `data.payload.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n\n**`conferenceParticipantSpeakStarted`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.participant.speak.started | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.payload.call_control_id` | string | Participant's call ID used to issue commands via Call Control API. |\n| `data.payload.call_leg_id` | string | ID that is unique to the call and can be used to correlate webhook events. |\n| `data.payload.call_session_id` | string | ID that is unique to the call session and can be used to correlate webhook events. |\n| `data.payload.client_state` | string | State received from a command. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.creator_call_session_id` | string | ID that is unique to the call session that started the conference. |\n| `data.payload.conference_id` | string | ID of the conference the text was spoken in. |\n| `data.payload.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n\n**`conferencePlaybackEnded`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.playback.ended | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.creator_call_session_id` | string | ID that is unique to the call session that started the conference. |\n| `data.payload.conference_id` | string | ID of the conference the text was spoken in. |\n| `data.payload.media_url` | string | The audio URL being played back, if audio_url has been used to start. |\n| `data.payload.media_name` | string | The name of the audio media file being played back, if media_name has been used to start. |\n| `data.payload.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n\n**`conferencePlaybackStarted`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.playback.started | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.creator_call_session_id` | string | ID that is unique to the call session that started the conference. |\n| `data.payload.conference_id` | string | ID of the conference the text was spoken in. |\n| `data.payload.media_url` | string | The audio URL being played back, if audio_url has been used to start. |\n| `data.payload.media_name` | string | The name of the audio media file being played back, if media_name has been used to start. |\n| `data.payload.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n\n**`conferenceRecordingSaved`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.recording.saved | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.payload.call_control_id` | string | Participant's call ID used to issue commands via Call Control API. |\n| `data.payload.call_session_id` | string | ID that is unique to the call session and can be used to correlate webhook events. |\n| `data.payload.client_state` | string | State received from a command. |\n| `data.payload.channels` | enum: single, dual | Whether recording was recorded in `single` or `dual` channel. |\n| `data.payload.conference_id` | uuid | ID of the conference that is being recorded. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.format` | enum: wav, mp3 | The audio file format used when storing the call recording. |\n| `data.payload.recording_ended_at` | date-time | ISO 8601 datetime of when recording ended. |\n| `data.payload.recording_id` | uuid | ID of the conference recording. |\n| `data.payload.recording_started_at` | date-time | ISO 8601 datetime of when recording started. |\n\n**`conferenceSpeakEnded`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.speak.ended | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.creator_call_session_id` | string | ID that is unique to the call session that started the conference. |\n| `data.payload.conference_id` | string | ID of the conference the text was spoken in. |\n| `data.payload.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |\n\n**`conferenceSpeakStarted`**\n\n| Field | Type | Description |\n|-------|------|-------------|\n| `data.record_type` | enum: event | Identifies the type of the resource. |\n| `data.event_type` | enum: conference.speak.started | The type of event being delivered. |\n| `data.id` | uuid | Identifies the type of resource. |\n| `data.payload.connection_id` | string | Call Control App ID (formerly Telnyx connection ID) used in the call. |\n| `data.payload.creator_call_session_id` | string | ID that is unique to the call session that started the conference. |\n| `data.payload.conference_id` | string | ID of the conference the text was spoken in. |\n| `data.payload.occurred_at` | date-time | ISO 8601 datetime of when the event occurred. |","tags":["telnyx","voice","conferencing","curl","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm"],"capabilities":["skill","source-team-telnyx","skill-telnyx-voice-conferencing-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-voice-conferencing-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 (41,639 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-22T00:54:51.186Z","embedding":null,"createdAt":"2026-04-18T22:08:17.991Z","updatedAt":"2026-04-22T00:54:51.186Z","lastSeenAt":"2026-04-22T00:54:51.186Z","tsv":"'+13125550001':100 '+13125550002':102 '-1':110 '/actions/end':738 '/actions/enqueue':221 '/actions/gather_using_audio':788 '/actions/hold':889 '/actions/join':997 '/actions/leave':1116 '/actions/leave_queue':287 '/actions/mute':1187 '/actions/play':1241 '/actions/record_pause':1293 '/actions/record_resume':1338 '/actions/record_start':1399 '/actions/record_stop':1466 '/actions/send_dtmf':1522 '/actions/speak':1581 '/actions/stop':1749 '/actions/unhold':1799 '/actions/unmute':1860 '/actions/update':1906 '/calls':217,283,2437,2451,2511,2592,2663 '/calls/v3':2528,2621,2682 '/conferences':356,466,594,667,736,786,887,995,1114,1185,1239,1291,1336,1397,1464,1520,1579,1747,1797,1858,1904,1977,2059 '/participants':597,1979,2061 '/queues':2168,2215,2283,2336,2401,2434,2508,2589,2660 '/v2/calls/v3:550e8400-e29b-41d4-a716-446655440000_gru1ogrkyq/actions/enqueue':267 '/v2/calls/v3:550e8400-e29b-41d4-a716-446655440000_gru1ogrkyq/actions/leave_queue':312 '/v2/conferences':367,542 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000':679 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/end':760 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/gather_using_audio':870 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/hold':926 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/join':1089 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/leave':1168 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/mute':1218 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/play':1280 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_pause':1325 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_resume':1370 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_start':1449 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_stop':1501 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/send_dtmf':1557 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/speak':1722 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/stop':1780 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/unhold':1841 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/unmute':1891 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/update':1956 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/participants':608 '/v2/conferences/550e8400-e29b-41d4-a716-446655440000/participants/':1992,2102 '/v2/messages':86 '/v2/queues':2179,2246 '/v2/queues/':2296,2363,2416,2448,2525,2618,2679 '1':141,263,2242 '10':22 '10e020e8bc47':1165 '1234':1554 '2':120,2779 '200':2360 '2xx':2777 '3':2787 '4':337,456 '401':61,142,159 '403':163 '404':166 '417f':1163 '41d4':1835,2532,2625,2686 '422':57,124,170 '429':54,133,176 '446655440000':1837,2534,2627,2688 '5':2746 '550e8400':1832,2529,2622,2683 '61d1':1162 '8601':2937,3090,3341,3470,3593,3637,3766,4040,4229,4380,4531,4657,4783,4925,4946,5033,5121 '97b3':1164 'a716':1836,2533,2626,2687 'account':2759 'activ':344,463,733,981,2649 'addit':2797 'aliv':2474,2558 'alway':62,476,1006,1125,2068,2710 'amount':979 'api':27,30,38,45,91,148,161,252,303,363,382,525,557,604,675,694,751,854,917,1074,1149,1209,1271,1316,1361,1437,1492,1545,1705,1771,1820,1882,1938,1988,2093,2175,2231,2292,2350,2412,2444,2521,2609,2675,2957,3110,3263,3392,3657,3786,3904,4093,4282,4433,4836 'api.telnyx.com':85,266,311,366,541,607,678,759,869,925,1088,1167,1217,1279,1324,1369,1448,1500,1556,1721,1779,1840,1890,1955,1991,2101,2178,2245,2295,2362,2415,2447,2524,2617,2678 'api.telnyx.com/v2/calls/v3:550e8400-e29b-41d4-a716-446655440000_gru1ogrkyq/actions/enqueue':265 'api.telnyx.com/v2/calls/v3:550e8400-e29b-41d4-a716-446655440000_gru1ogrkyq/actions/leave_queue':310 'api.telnyx.com/v2/conferences':365,540 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000':677 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/end':758 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/gather_using_audio':868 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/hold':924 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/join':1087 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/leave':1166 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/mute':1216 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/play':1278 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_pause':1323 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_resume':1368 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_start':1447 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/record_stop':1499 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/send_dtmf':1555 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/speak':1720 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/stop':1778 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/unhold':1839 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/unmute':1889 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/actions/update':1954 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/participants':606 'api.telnyx.com/v2/conferences/550e8400-e29b-41d4-a716-446655440000/participants/':1990,2100 'api.telnyx.com/v2/messages':84 'api.telnyx.com/v2/queues':2177,2244 'api.telnyx.com/v2/queues/':2294,2361,2414,2446,2523,2616,2677 'app':2963,3116,3269,3398,3536,3663,3792,3957,4146,4335,4486,4574,4700,4894,4988,5076 'application/json':97,258,309,531,757,860,923,1080,1155,1215,1277,1322,1367,1443,1498,1551,1711,1777,1826,1888,1944,2099,2237,2356,2615 'arb':1596 'array':657,897,1064,1192,1249,1529,1589,1754,1865,1928,2046,2156 'asymmetr':2721 'attempt':2788 'attribut':970 'au':1611 'audio':495,767,774,794,813,891,1026,1223,1228,1243,1727,1734,4000,4006,4020,4189,4195,4209,4617,4623,4637,4743,4749,4763,4909 'australia':507,904,1037,1136,1196,1258,1303,1348,1419,1479,1689,1758,1807,1869,1919 'authent':41,59,144,2165 'author':88,249,300,360,522,601,672,748,851,914,1071,1146,1206,1268,1313,1358,1434,1489,1542,1702,1768,1817,1879,1935,1985,2090,2172,2228,2289,2347,2409,2441,2518,2606,2672 'automat':439 'averag':2181,2248,2300,2367,3044 'avg':3039 'back':1106,4004,4025,4193,4214,4621,4642,4747,4768 'backoff':182 'barg':1056 'base64':2735 'base64-encoded':2734 'bash':24,68,244,295,357,517,598,669,743,846,909,1066,1141,1201,1263,1308,1353,1429,1484,1537,1697,1763,1812,1874,1930,1982,2085,2169,2223,2286,2342,2404,2438,2515,2601,2667,2715 'bearer':89,250,301,361,523,602,673,749,852,915,1072,1147,1207,1269,1314,1359,1435,1490,1543,1703,1769,1818,1880,1936,1986,2091,2173,2229,2290,2348,2410,2442,2519,2607,2673 'beep':473,1003,1122,1415,2065 'bodi':111,123,154 'boolean':235,487,516,627,631,634,644,836,1022,1024,1034,1047,1052,1416,2016,2022,2025,2031,2078,2084,2126,2132,2135,2141,2475,2559,2600 'br':1666 'bridg':440,3193,3195 'bridging-in-process':3194 'busi':539 'ca':1636 'call':46,209,212,218,272,278,284,420,424,436,468,533,610,614,654,790,862,885,894,936,955,999,1061,1082,1098,1118,1157,1183,1189,1237,1246,1526,1586,1745,1751,1795,1801,1828,1856,1862,1908,1925,1946,1996,2000,2043,2106,2110,2153,2212,2275,2280,2333,2398,2420,2428,2453,2457,2461,2486,2495,2502,2512,2537,2541,2545,2570,2579,2582,2593,2632,2639,2645,2664,2833,2836,2948,2955,2961,2972,2983,3002,3034,3046,3101,3108,3114,3125,3136,3155,3187,3212,3254,3261,3267,3278,3289,3308,3383,3390,3396,3407,3418,3437,3524,3534,3545,3550,3561,3648,3655,3661,3672,3683,3702,3777,3784,3790,3801,3812,3831,3895,3902,3915,3934,3955,3966,3968,3978,4084,4091,4104,4123,4144,4155,4157,4167,4273,4280,4293,4312,4333,4344,4346,4356,4424,4431,4444,4463,4484,4495,4497,4507,4572,4583,4585,4595,4698,4709,4711,4721,4827,4834,4847,4892,4903,4916,4986,4997,4999,5009,5074,5085,5087,5097 'call.dequeued':3070 'call.enqueued':2917 'callenqueu':2832,2900 'callleftqueu':2835,3053 'case':116 'certain':978 'chang':2848,3585 'channel':1403,4877 'check':69,128,146,173,202 'client':226,289,482,797,1012,1468,1531 'client.webhooks.unwrap':2772,2827 'cmn':1598 'cmn-cn':1597 'cn':1599 'code':67,72,81,106,118,153,158 'comfort':485 'command':229,292,488,740,945,1015,1131,1295,1340,1392,1407,1471,1591,1914,2652,2953,3019,3106,3172,3259,3325,3388,3454,3575,3653,3719,3782,3848,3900,3951,4089,4140,4278,4329,4429,4480,4832,4864 'common':156 'complet':408,583,720 'confer':317,319,320,334,346,400,413,416,429,434,443,444,453,513,575,588,591,595,618,624,641,661,665,712,726,729,771,779,875,884,932,940,944,948,967,972,991,1019,1044,1049,1095,1102,1173,1182,1225,1236,1284,1288,1329,1333,1374,1380,1385,1453,1459,1508,1517,1564,1732,1744,1785,1794,1846,1855,1896,1899,1962,1969,2004,2013,2028,2050,2056,2075,2081,2114,2123,2138,2840,2843,2846,2850,2854,2858,2863,2868,2873,2878,2882,2886,2890,2894,3329,3458,3487,3579,3723,3852,3983,3990,4172,4179,4361,4368,4512,4519,4600,4607,4726,4733,4884,4937,5014,5021,5102,5109 'conferenc':4,8 'conference.created':3236 'conference.ended':3365 'conference.floor.changed':3506 'conference.participant.joined':3617 'conference.participant.left':1112,3746 'conference.participant.playback.ended':3875 'conference.participant.playback.started':4064 'conference.participant.speak.ended':4253 'conference.participant.speak.started':4404 'conference.playback.ended':4555 'conference.playback.started':4681 'conference.recording.saved':1395,1462,4807 'conference.speak.ended':4969 'conference.speak.started':5057 'conferencecr':2839,3219 'conferenceend':2842,3348 'conferencefloorchang':2845,3489 'conferenceparticipantjoin':2849,3600 'conferenceparticipantleft':2853,3729 'conferenceparticipantplaybackend':2857,3858 'conferenceparticipantplaybackstart':2862,4047 'conferenceparticipantspeakend':2867,4236 'conferenceparticipantspeakstart':2872,4387 'conferenceplaybackend':2877,4538 'conferenceplaybackstart':2881,4664 'conferencerecordingsav':2885,4790 'conferencespeakend':2889,4952 'conferencespeakstart':2893,5040 'configur':2789,2807 'connect':369,544,681,2465,2549,2967,3120,3273,3402,3540,3667,3796,3961,4150,4339,4490,4578,4704,4898,4992,5080 'content':95,256,307,529,755,858,921,1078,1153,1213,1275,1320,1365,1441,1496,1549,1709,1775,1824,1886,1942,2097,2235,2354,2613 'content-typ':94,255,306,528,754,857,920,1077,1152,1212,1274,1319,1364,1440,1495,1548,1708,1774,1823,1885,1941,2096,2234,2353,2612 'control':219,285,425,469,534,611,655,791,863,895,956,1000,1062,1083,1119,1158,1190,1247,1527,1587,1752,1802,1829,1863,1909,1926,1947,1997,2044,2107,2154,2454,2513,2538,2594,2665,2945,2956,2962,3098,3109,3115,3251,3262,3268,3380,3391,3397,3521,3525,3535,3645,3656,3662,3774,3785,3791,3890,3903,3956,4079,4092,4145,4268,4281,4334,4419,4432,4485,4573,4699,4822,4835,4893,4987,5075 'convert':1566 'correl':2989,3009,3142,3162,3295,3315,3424,3444,3689,3709,3818,3838,3921,3941,4110,4130,4299,4319,4450,4470,4854 'creat':322,372,412,414,432,515,547,620,684,2007,2117,2186,2206,2209,2253,2305,2372,2841 'creation':992 'credenti':2762 'curl':5,9,12,76,245,296,358,518,599,670,744,847,910,1067,1142,1202,1264,1309,1354,1430,1485,1538,1698,1764,1813,1875,1931,1983,2086,2170,2224,2287,2343,2405,2439,2516,2602,2668 'current':2189,2256,2308,2375,3030 'custom':1410 'cy':1601 'cy-gb':1600 'd':98,115,259,532,861,1081,1156,1444,1552,1712,1827,1945,2238,2357 'da':1604 'da-dk':1603 'data.event':2914,3067,3233,3362,3614,3743,3872,4061,4250,4401,4552,4678,4804,4966,5054 'data.id':2924,3077,3243,3372,3624,3753,3882,4071,4260,4411,4562,4688,4814,4976,5064 'data.occurred':2931,3084,3631,3760 'data.payload.call':2944,2973,2992,3097,3126,3145,3250,3279,3298,3379,3408,3427,3644,3673,3692,3773,3802,3821,3889,3905,3924,4078,4094,4113,4267,4283,4302,4418,4434,4453,4821,4837 'data.payload.channels':4865 'data.payload.client':3012,3165,3318,3447,3712,3841,3944,4133,4322,4473,4857 'data.payload.conference':3326,3455,3720,3849,3984,4173,4362,4513,4601,4727,4878,5015,5103 'data.payload.connection':2958,3111,3264,3393,3658,3787,3952,4141,4330,4481,4569,4695,4889,4983,5071 'data.payload.creator':3967,4156,4345,4496,4584,4710,4998,5086 'data.payload.current':3027 'data.payload.format':4904 'data.payload.media':3996,4013,4185,4202,4613,4630,4739,4756 'data.payload.occurred':3335,3464,4034,4223,4374,4525,4651,4777,5027,5115 'data.payload.queue':3020,3038,3173,3180 'data.payload.reason':3191,3477 'data.payload.recording':4918,4931,4939 'data.payload.wait':3207 'data.record':2904,3057,3223,3352,3604,3733,3862,4051,4240,4391,4542,4668,4794,4956,5044 'date':2010,2040,2120,2150,2934,3087,3338,3467,3590,3634,3763,4037,4226,4377,4528,4654,4780,4922,4943,5030,5118 'date-tim':2009,2039,2119,2149,2933,3086,3337,3466,3589,3633,3762,4036,4225,4376,4527,4653,4779,4921,4942,5029,5117 'datetim':2938,3091,3342,3471,3594,3638,3767,4041,4230,4381,4532,4658,4784,4926,4947,5034,5122 'de':1607,1608 'de-d':1606 'delay':139 'delet':2392,2395,2400,2407,2659,2670 'deliv':2923,3076,3242,3371,3512,3623,3752,3881,4070,4259,4410,4561,4687,4813,4975,5063 'demand':324 'descend':350 'descript':2831,2903,3056,3222,3351,3492,3603,3732,3861,4050,4239,4390,4541,4667,4793,4955,5043 'detail':1965 'digit':808,821,830,838,844,1524,1553 'dk':1605 'dtmf':765,783,835,1506,1511 'dual':1406,4868,4876 'durat':491,1534 'e29b':1834,2531,2624,2685 'e29b-41d4-a716':1833,2530,2623,2684 'east':510,907,1040,1139,1199,1261,1306,1351,1422,1482,1692,1761,1810,1872,1922 'echo':107,112,121,125,134,143,150 'ed25519':2697,2704,2720,2733,2737,2820,2823 'en':1610,1613,1616,1620,1623 'en-au':1609 'en-gb':1612 'en-gb-wl':1615 'en-in':1619 'en-us':1622 'enabl':474,1004,1123,2066 'encod':2736 'end':375,380,387,550,555,562,623,640,687,692,699,724,727,1018,1043,1386,2012,2027,2074,2080,2122,2137,2844,2861,2871,2880,2892,3488,4919,4930 'endpoint':187,2774 'enqueu':208,2468,2552,2834 'enter':479,1009,1051,1128,2071 'enum':377,399,404,475,506,552,574,579,637,646,689,711,716,903,1005,1036,1055,1124,1135,1195,1257,1302,1347,1404,1418,1425,1478,1595,1684,1688,1757,1806,1868,1918,2033,2067,2143,2201,2268,2320,2387,2484,2568,2906,2916,3059,3069,3192,3225,3235,3354,3364,3478,3495,3505,3606,3616,3735,3745,3864,3874,4053,4063,4242,4252,4393,4403,4544,4554,4670,4680,4796,4806,4866,4905,4958,4968,5046,5056 'error':42,51,56,60,64,127,151,157,172 'es':1626,1627,1629,1632 'es-':1625 'es-mx':1628 'es-us':1631 'esac':155 'europ':508,905,1038,1137,1197,1259,1304,1349,1420,1480,1690,1759,1808,1870,1920 'event':2802,2830,2907,2921,2942,2991,3011,3060,3074,3095,3144,3164,3226,3240,3297,3317,3346,3355,3369,3426,3446,3475,3496,3503,3510,3586,3598,3607,3621,3642,3691,3711,3736,3750,3771,3820,3840,3865,3879,3923,3943,4045,4054,4068,4112,4132,4234,4243,4257,4301,4321,4385,4394,4408,4452,4472,4536,4545,4559,4662,4671,4685,4788,4797,4811,4856,4959,4973,5038,5047,5061,5126 'exampl':34 'exceed':386,561,698,3484 'exist':419,664,935,2279,2332,2397,2431,2501,2505 'exit':481,626,643,1011,1021,1046,1130,2015,2030,2073,2077,2083,2125,2140 'expect':1110,1393,1460 'expir':327,353,390,446,565,702 'exponenti':181 'export':25 'f91269aa':1161 'f91269aa-61d1-417f-97b3-10e020e8bc47':1160 'fail':48,145 'failov':2791 'field':130,174,2899,2901,3054,3220,3349,3490,3601,3730,3859,4048,4237,4388,4539,4665,4791,4953,5041 'file':775,1411,4022,4211,4639,4765,4910 'flag':2587 'floor':2847 'follow':2800 'forc':2629 'format':132,175,1401,1445,4911 'former':2965,3118,3271,3400,3538,3665,3794,3959,4148,4337,4488,4576,4702,4896,4990,5078 'found':169 'fr':1635,1638,1639 'fr-ca':1634 'fr-fr':1637 'gather':764,782,800 'gb':1602,1614,1617 'get':355,593,666,1976,2167,2282,2433,2507,2752 'gru1ogrkyq':1838,2535,2628,2689 'h':87,93,248,254,299,305,359,521,527,600,671,747,753,850,856,913,919,1070,1076,1145,1151,1205,1211,1267,1273,1312,1318,1357,1363,1433,1439,1488,1494,1541,1547,1701,1707,1767,1773,1816,1822,1878,1884,1934,1940,1984,2089,2095,2171,2227,2233,2288,2346,2352,2408,2440,2517,2605,2611,2671 'handl':43,63 'hangup':234,2586,2599,3198 'header':2709,2725,2821 'hello':104 'hi':1641 'hi-in':1640 'hmac/standard':2723 'hold':494,498,633,874,877,1023,1025,1029,2024,2134 'host':383,558,695,3481 'hour':338,457 'http':70,80,105,117,152 'id':220,230,286,293,370,393,426,470,489,535,545,568,596,612,616,628,656,668,682,705,737,741,787,792,801,864,888,896,949,957,996,1001,1016,1063,1084,1115,1120,1132,1159,1186,1191,1240,1248,1292,1296,1299,1337,1341,1344,1398,1408,1465,1472,1475,1521,1528,1580,1588,1592,1748,1753,1798,1803,1830,1859,1864,1905,1910,1915,1927,1948,1973,1978,1981,1994,1998,2002,2005,2017,2045,2060,2063,2104,2108,2112,2115,2127,2155,2192,2259,2311,2378,2455,2459,2463,2466,2477,2514,2539,2543,2547,2550,2561,2595,2666,2946,2949,2959,2964,2968,2975,2977,2994,2996,3099,3102,3112,3117,3121,3128,3130,3147,3149,3252,3255,3265,3270,3274,3281,3283,3300,3302,3327,3330,3381,3384,3394,3399,3403,3410,3412,3429,3431,3456,3459,3513,3522,3526,3532,3537,3541,3548,3552,3559,3563,3577,3580,3646,3649,3659,3664,3668,3675,3677,3694,3696,3721,3724,3775,3778,3788,3793,3797,3804,3806,3823,3825,3850,3853,3891,3896,3907,3909,3926,3928,3953,3958,3962,3970,3972,3985,3987,4080,4085,4096,4098,4115,4117,4142,4147,4151,4159,4161,4174,4176,4269,4274,4285,4287,4304,4306,4331,4336,4340,4348,4350,4363,4365,4420,4425,4436,4438,4455,4457,4482,4487,4491,4499,4501,4514,4516,4570,4575,4579,4587,4589,4602,4604,4696,4701,4705,4713,4715,4728,4730,4823,4828,4839,4841,4879,4881,4890,4895,4899,4932 'identifi':2908,2926,3061,3079,3227,3245,3356,3374,3497,3515,3608,3626,3737,3755,3866,3884,4055,4073,4244,4262,4395,4413,4546,4564,4672,4690,4798,4816,4960,4978,5048,5066 'iie4pqg':867 'import':183 'inact':2638 'includ':2700,2812 'init':405,580,717 'initi':803 'input':784 'instal':10,16 'insuffici':164 'integ':238,243,493,504,806,811,822,825,831,842,1536,2185,2191,2196,2222,2252,2258,2263,2304,2310,2315,2371,2377,2382,2481,2492,2565,2576,3029,3043,3182,3210 'inter':807 'invalid':160,812,816 'is-i':1643 'iso':2936,3089,3340,3469,3592,3636,3765,4039,4228,4379,4530,4656,4782,4924,4945,5032,5120 'issu':941,2952,3105,3258,3387,3652,3781,3899,4088,4277,4428,4831 'it-it':1646 'ja':1650 'ja-jp':1649 'join':647,648,930,933,943,964,2034,2035,2144,2145,2852,3334,3463,3728,3857 'jp':1651 'keep':232,2584,2597 'key':28,31,39,92,149,162,253,304,364,526,605,676,752,855,918,1075,1150,1210,1272,1317,1362,1438,1493,1546,1706,1772,1821,1883,1939,1989,2094,2176,2232,2293,2351,2413,2445,2522,2610,2676,2755,2761 'ko':1653 'ko-kr':1652 'kr':1654 'label':1975,2019,2129 'languag':1594,2769 'last':3183 'leav':1093,3199,3204 'left':332,379,384,451,554,559,649,691,696,2036,2146,2837,2856,3480,3482 'leg':421,615,937,960,1099,2001,2111,2458,2542,2974,3127,3280,3409,3547,3551,3674,3803,3906,4095,4284,4435 'limit':53,136,178 'linux':19 'list':186,316,318,348,587,590,879,1177,1789,1850,2158,2160,2426 'longer':2648 'loop':1251 'maco':18 'max':236,239,502,987,2194,2220,2261,2313,2340,2358,2380 'maximum':820,823 'mdi91x4lwfes7igbbeot9m4aigoy08m0wwzfist1yw2axz':866 'media':499,817,826,899,1030,1253,4021,4027,4210,4216,4638,4644,4764,4770 'meta.total':203 'middl':509,906,1039,1138,1198,1260,1305,1350,1421,1481,1691,1760,1809,1871,1921 'milli':805,810,841,1535 'minimum':829 'minut':492,2747 'monitor':1057 'move':1104 'mp3':1446,4907 'must':2775 'mute':630,1033,1172,1175,2021,2131 'mx':1630 'n':79 'name':224,261,395,430,471,500,538,570,707,818,827,900,1031,1254,1412,2197,2218,2240,2264,2285,2298,2316,2338,2365,2383,2403,2418,2436,2450,2510,2527,2591,2620,2662,2681,3023,3176,4014,4017,4028,4203,4206,4217,4631,4634,4645,4757,4760,4771 'navig':200 'nb':1656 'nb-no':1655 'network':50 'never':477,1007,1126,2069 'new':2211,3529,3555,3566 'nl':1659,1660 'nl-nl':1658 'nois':486 'none':1058 'note':184 'number':193,342,461 'object':389,564,619,701,1696 'occur':2943,3096,3347,3476,3599,3643,3772,4046,4235,4386,4537,4663,4789,5039,5127 'old':2748 'one':1514 'option':225,288,472,739,793,890,1002,1121,1188,1242,1294,1339,1402,1467,1525,1585,1750,1804,1861,1913,2064,2219,2596 'order':351 'page':192,195,201,204 'pagin':185,189 'paramet':198,989 'park':1108 'particip':330,345,449,464,503,589,592,638,734,780,876,881,982,988,1174,1179,1226,1233,1509,1518,1565,1577,1717,1741,1786,1791,1847,1852,1897,1900,1963,1970,1980,1993,2051,2057,2062,2103,2851,2855,2859,2864,2869,2874,3333,3462,3727,3856,3893,4082,4271,4422,4825 'patch':2058,2088,2588,2604 'path':952 'paus':1286,1287 'payload':1583,1682,1713,2898 'payload.call':3520,3546,3557 'payload.client':3568 'payload.conference':3576 'payload.connection':3531 'payload.occurred':3587 'permiss':165 'pl':1662,1663 'pl-pl':1661 'play':772,1222,1227,1414,1571,1729,1736,4003,4024,4192,4213,4620,4641,4746,4767 'playback':833,2860,2865,2879,2883 'portal':2758,2795 'posit':2480,2564,3028,3031,3181,3184 'post':83,216,247,282,298,465,520,735,746,785,849,886,912,994,1069,1113,1144,1184,1204,1238,1266,1290,1311,1335,1356,1396,1432,1463,1487,1519,1540,1578,1700,1746,1766,1796,1815,1857,1877,1903,1933,2214,2226,2335,2345 'pre':15 'pre-instal':14 'process':3197 'product':66,2714 'progress':407,582,719 'prompt':768 'properti':2053,2329 'protect':2751 'pt':1665,1668,1669 'pt-br':1664 'pt-pt':1667 'public':2754 'put':210 'queri':197 'queu':2578,2581 'queue':215,223,260,275,281,2159,2162,2202,2208,2213,2217,2239,2269,2276,2281,2284,2297,2321,2327,2334,2337,2364,2388,2394,2399,2402,2417,2423,2432,2435,2449,2476,2479,2485,2498,2506,2509,2526,2560,2563,2569,2590,2619,2635,2642,2658,2661,2680,2838,3026,3037,3050,3179,3190,3206,3216 'rate':52,135,177 'reason':376,551,688,3202,3485 'receiv':3016,3169,3322,3451,3572,3716,3845,3948,4137,4326,4477,4861 'record':397,572,635,709,1285,1289,1298,1330,1334,1343,1375,1378,1381,1391,1454,1457,1474,2199,2266,2318,2385,2482,2566,2887,3493,4870,4872,4888,4917,4929,4938,4950 'regardless':339,458 'region':401,505,576,713,902,1035,1134,1194,1256,1301,1346,1417,1477,1687,1756,1805,1867,1917 'reject':2744 'reliabl':2798 'remov':271,276,1096,2630,2636,2654 'replay':2750 'request':993,2699 'requir':129,222,467,789,998,1117,1400,1523,1582,1800,1907,2216,2339 'resourc':167,2913,2930,3066,3083,3232,3249,3361,3378,3502,3519,3613,3630,3742,3759,3871,3888,4060,4077,4249,4266,4400,4417,4551,4568,4677,4694,4803,4820,4965,4982,5053,5070 'respons':74,75,108,113,207 'result':190,269,314,762,872,928,1091,1170,1220,1282,1327,1372,1451,1503,1559,1724,1782,1843,1893,1958 'resum':1331,1332 'retri':137,179,2784 'retriev':659,662,1960,1964,2273,2277,2419,2424,2493,2499 'return':188,268,313,368,543,609,680,761,871,927,1090,1169,1219,1281,1326,1371,1450,1502,1558,1723,1781,1842,1892,1957,1995,2105,2180,2247,2299,2366,2452,2536,2776 'ro':1671,1672 'ro-ro':1670 'role':1054,1902,1912,1952 'ru':1674,1675 'ru-ru':1673 'save':2888 'say':1714 'sdk':2766 'se':1678 'sec':242,2184,2251,2303,2370,2491,2575,3042,3209 'second':2780,3052,3218 'sed':114 'send':1505,1510 'sent':2726,2804 'session':2462,2546,2993,3003,3146,3156,3299,3309,3428,3438,3558,3562,3693,3703,3822,3832,3925,3935,3969,3979,4114,4124,4158,4168,4303,4313,4347,4357,4454,4464,4498,4508,4586,4596,4712,4722,4838,4848,5000,5010,5088,5098 'set':984,1695,2760 'setup':23 'sign':2694,2717 'signatur':2703,2712,2732,2738,2819,2824 'silenc':1428 'singl':1405,4867,4874 'size':196,237,2190,2195,2221,2257,2262,2309,2314,2341,2359,2376,2381 'skill' 'skill-telnyx-voice-conferencing-curl' 'sleep':140 'soft':639,1042,2026,2079,2136 'source-team-telnyx' 'speak':1561,2870,2875,2891,2895 'speaker':3530,3556,3567,3584 'specif':778,1968 'speech':1569 'spend':3047 'spent':3213 'spoken':3994,4183,4372,4523,4611,4737,5025,5113 'ssml':1686 'start':512,1048,1376,1377,2866,2876,2884,2896,3981,4012,4033,4170,4201,4222,4359,4510,4598,4629,4650,4724,4755,4776,4940,4951,5012,5100 'state':227,290,483,798,1013,1109,1469,1532,3013,3015,3166,3168,3319,3321,3448,3450,3569,3571,3713,3715,3842,3844,3945,3947,4134,4136,4323,4325,4474,4476,4858,4860 'status':71,403,578,645,715,2032,2142 'stop':832,1383,1390,1455,1456,1726,1733 'store':4914 'string':228,231,270,291,294,315,371,374,392,394,396,402,411,484,490,497,501,546,549,567,569,571,577,586,613,617,622,629,652,658,683,686,704,706,708,714,723,742,763,796,799,802,815,819,828,839,845,873,893,898,901,929,1014,1017,1028,1032,1065,1092,1133,1171,1193,1221,1245,1250,1252,1255,1283,1297,1300,1328,1342,1345,1373,1409,1413,1452,1470,1473,1504,1530,1533,1560,1590,1593,1725,1755,1783,1844,1866,1894,1916,1929,1959,1999,2003,2006,2018,2020,2047,2109,2113,2116,2128,2130,2157,2188,2193,2198,2205,2255,2260,2265,2272,2307,2312,2317,2324,2374,2379,2384,2391,2456,2460,2464,2467,2470,2472,2478,2488,2540,2544,2548,2551,2554,2556,2562,2572,2947,2960,2976,2995,3014,3021,3100,3113,3129,3148,3167,3174,3253,3266,3282,3301,3320,3328,3382,3395,3411,3430,3449,3457,3523,3533,3549,3560,3570,3578,3647,3660,3676,3695,3714,3722,3776,3789,3805,3824,3843,3851,3892,3908,3927,3946,3954,3971,3986,3998,4015,4081,4097,4116,4135,4143,4160,4175,4187,4204,4270,4286,4305,4324,4332,4349,4364,4421,4437,4456,4475,4483,4500,4515,4571,4588,4603,4615,4632,4697,4714,4729,4741,4758,4824,4840,4859,4891,4985,5002,5017,5073,5090,5105 'success':122 'supervisor':1053,1901,1911,1951 'support':264,2243 'sv':1677 'sv-se':1676 't02llqxiyarkhfrkxgap8ny511ehflizdvdukjisw8d6a9bborherqczrrzvzakpwxblpw48kyzq':537,1086,1950 'tail':109 'telnyx':2,6,26,37,90,147,251,302,362,524,603,674,750,853,916,1073,1148,1208,1270,1315,1360,1436,1491,1544,1704,1770,1819,1881,1937,1987,2092,2174,2230,2291,2349,2411,2443,2520,2608,2674,2693,2702,2707,2716,2731,2740,2757,2765,2782,2794,2814,2818,2966,3119,3272,3401,3539,3666,3795,3960,4149,4338,4489,4577,4703,4897,4991,5079 'telnyx-signature-ed25519':2701,2730,2817 'telnyx-timestamp':2706,2739,2813 'telnyx-voice-conferencing-curl':1 'telnyx.kokorotts.af':1719 'termin':731,837 'text':11,103,1562,1567,1685,3992,4181,4370,4521,4609,4735,5023,5111 'tier':262,2241 'time':241,385,560,697,2011,2041,2121,2151,2183,2250,2302,2369,2490,2574,2935,3041,3045,3088,3208,3211,3339,3468,3483,3591,3635,3764,4038,4227,4378,4529,4655,4781,4923,4944,5031,5119 'timeout':804,809,840,3200 'timestamp':2708,2741,2743,2815 'tone':1512 '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' 'tr':1680,1681 'tr-tr':1679 'tri':824 'trim':1424,1427 'trim-sil':1426 'type':96,257,308,398,530,573,636,710,756,859,922,1079,1154,1214,1276,1321,1366,1442,1497,1550,1683,1710,1776,1825,1887,1943,2098,2200,2236,2267,2319,2355,2386,2483,2567,2614,2902,2905,2910,2915,2919,2928,3055,3058,3063,3068,3072,3081,3221,3224,3229,3234,3238,3247,3350,3353,3358,3363,3367,3376,3491,3494,3499,3504,3508,3517,3602,3605,3610,3615,3619,3628,3731,3734,3739,3744,3748,3757,3860,3863,3868,3873,3877,3886,4049,4052,4057,4062,4066,4075,4238,4241,4246,4251,4255,4264,4389,4392,4397,4402,4406,4415,4540,4543,4548,4553,4557,4566,4666,4669,4674,4679,4683,4692,4792,4795,4800,4805,4809,4818,4954,4957,4962,4967,4971,4980,5042,5045,5050,5055,5059,5068 'unhold':1784,1787 'uniqu':2980,2999,3133,3152,3286,3305,3415,3434,3680,3699,3809,3828,3912,3931,3975,4101,4120,4164,4290,4309,4353,4441,4460,4504,4592,4718,4844,5006,5094 'unix':2742 'unmut':1845,1848 'updat':409,584,650,721,1895,1898,2037,2048,2052,2147,2203,2270,2322,2325,2328,2389,2577,2580 'upon':431 'url':496,795,814,892,1027,1244,2792,2809,3997,4001,4007,4186,4190,4196,4614,4618,4624,4740,4744,4750 'us':511,908,1041,1140,1200,1262,1307,1352,1423,1483,1624,1633,1693,1762,1811,1873,1923 'use':36,191,422,766,2650,2763,2826,2950,2969,2987,3007,3103,3122,3140,3160,3256,3275,3293,3313,3385,3404,3422,3442,3542,3650,3669,3687,3707,3779,3798,3816,3836,3897,3919,3939,3963,4010,4031,4086,4108,4128,4152,4199,4220,4275,4297,4317,4341,4426,4448,4468,4492,4580,4627,4648,4706,4753,4774,4829,4852,4900,4912,4994,5082 'user':2166 'uuid':1476,2925,3078,3244,3373,3514,3625,3754,3883,4072,4261,4412,4563,4689,4815,4880,4933,4977,5065 'v2':536,1085,1949 'v3':865,1831 'valid':55,126,171,843 'verif':2692,2771,2825 'verifi':2711,2829 'via':381,556,693,1388,2954,3107,3260,3389,3654,3783,3901,4090,4279,4430,4833 'voic':3,7,1584,1694,1718 'w':78 'wait':240,2182,2249,2301,2368,2489,2573,3040 'wav':4906 'webhook':1111,1394,1461,2690,2691,2695,2718,2724,2729,2801,2808,2811,2897,2990,3010,3143,3163,3296,3316,3425,3445,3690,3710,3819,3839,3922,3942,4111,4131,4300,4320,4451,4471,4855 'whether':4869 'whisper':653,1059,1060,1924,1953,2042,2152 'window':21 'wish':962 'within':2778 'wls':1618 'x':82,246,297,519,745,848,911,1068,1143,1203,1265,1310,1355,1431,1486,1539,1699,1765,1814,1876,1932,2087,2225,2344,2406,2603,2669","prices":[{"id":"ad17d10b-8f4d-4412-8201-c57331f583cf","listingId":"0ce24977-ed16-4b57-a51a-e5d1522813c6","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:08:17.991Z"}],"sources":[{"listingId":"0ce24977-ed16-4b57-a51a-e5d1522813c6","source":"github","sourceId":"team-telnyx/ai/telnyx-voice-conferencing-curl","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-voice-conferencing-curl","isPrimary":false,"firstSeenAt":"2026-04-18T22:08:17.991Z","lastSeenAt":"2026-04-22T00:54:51.186Z"}],"details":{"listingId":"0ce24977-ed16-4b57-a51a-e5d1522813c6","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-voice-conferencing-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":"fd42c2c2794ef8eb1777d3c7f4b05ef0de243514","skill_md_path":"skills/telnyx-voice-conferencing-curl/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-voice-conferencing-curl"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-voice-conferencing-curl","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-voice-conferencing-curl"},"updatedAt":"2026-04-22T00:54:51.186Z"}}