{"id":"905b09db-83b0-4432-b8cd-f52d3d978dcb","shortId":"gByfRn","kind":"skill","title":"telnyx-texml-java","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Texml - Java\n\n## Installation\n\n```text\n<!-- Maven -->\n<dependency>\n    <groupId>com.telnyx.sdk</groupId>\n    <artifactId>telnyx</artifactId>\n    <version>6.36.0</version>\n</dependency>\n\n// Gradle\nimplementation(\"com.telnyx.sdk:telnyx:6.36.0\")\n```\n\n## Setup\n\n```java\nimport com.telnyx.sdk.client.TelnyxClient;\nimport com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;\n\nTelnyxClient client = TelnyxOkHttpClient.fromEnv();\n```\n\nAll examples below assume `client` is already initialized as shown above.\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```java\nimport com.telnyx.sdk.errors.TelnyxServiceException;\n\ntry {\n    var result = client.messages().send(params);\n} catch (TelnyxServiceException e) {\n    System.err.println(\"API error \" + e.statusCode() + \": \" + e.getMessage());\n    if (e.statusCode() == 422) {\n        System.err.println(\"Validation error — check required fields and formats\");\n    } else if (e.statusCode() == 429) {\n        // Rate limited — wait and retry with exponential backoff\n        Thread.sleep(1000);\n    }\n}\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 methods return a page. Use `.autoPager()` for automatic iteration: `for (var item : page.autoPager()) { ... }`. For manual control, use `.hasNextPage()` and `.nextPage()`.\n\n## Fetch multiple call resources\n\nReturns multiple call resources for an account. This endpoint is eventually consistent.\n\n`GET /texml/Accounts/{account_sid}/Calls`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.calls.CallRetrieveCallsParams;\nimport com.telnyx.sdk.models.texml.accounts.calls.CallRetrieveCallsResponse;\n\nCallRetrieveCallsResponse response = client.texml().accounts().calls().retrieveCalls(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `calls` (array[object]), `end` (integer), `first_page_uri` (string), `next_page_uri` (string), `page` (integer), `page_size` (integer), `start` (integer), `uri` (string)\n\n## Initiate an outbound call\n\nInitiate an outbound TeXML call. Telnyx will request TeXML from the XML Request URL configured for the connection in the Mission Control Portal.\n\n`POST /texml/Accounts/{account_sid}/Calls` — Required: `To`, `From`, `ApplicationSid`\n\nOptional: `AsyncAmd` (boolean), `AsyncAmdStatusCallback` (string), `AsyncAmdStatusCallbackMethod` (enum: GET, POST), `CallerId` (string), `CancelPlaybackOnDetectMessageEnd` (boolean), `CancelPlaybackOnMachineDetection` (boolean), `CustomHeaders` (array[object]), `DetectionMode` (enum: Premium, Regular), `FallbackUrl` (string), `MachineDetection` (enum: Enable, Disable, DetectMessageEnd), `MachineDetectionSilenceTimeout` (integer), `MachineDetectionSpeechEndThreshold` (integer), `MachineDetectionSpeechThreshold` (integer), `MachineDetectionTimeout` (integer), `PreferredCodecs` (string), `Record` (boolean), `RecordingChannels` (enum: mono, dual), `RecordingStatusCallback` (string), `RecordingStatusCallbackEvent` (string), `RecordingStatusCallbackMethod` (enum: GET, POST), `RecordingTimeout` (integer), `RecordingTrack` (enum: inbound, outbound, both), `SendRecordingUrl` (boolean), `SipAuthPassword` (string), `SipAuthUsername` (string), `SipRegion` (enum: US, Europe, Canada, Australia, Middle East), `StatusCallback` (string), `StatusCallbackEvent` (enum: initiated, ringing, answered, completed), `StatusCallbackMethod` (enum: GET, POST), `SuperviseCallSid` (string), `SupervisingRole` (enum: barge, whisper, monitor), `Texml` (string), `TimeLimit` (integer), `Timeout` (integer), `Trim` (enum: trim-silence, do-not-trim), `Url` (string), `UrlMethod` (enum: GET, POST)\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.calls.CallCallsParams;\nimport com.telnyx.sdk.models.texml.accounts.calls.CallCallsResponse;\n\nCallCallsParams params = CallCallsParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .applicationSid(\"example-app-sid\")\n    .from(\"+13120001234\")\n    .to(\"+13121230000\")\n    .build();\nCallCallsResponse response = client.texml().accounts().calls().calls(params);\n```\n\nReturns: `from` (string), `status` (string), `to` (string)\n\n## Fetch a call\n\nReturns an individual call identified by its CallSid. This endpoint is eventually consistent.\n\n`GET /texml/Accounts/{account_sid}/Calls/{call_sid}`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.calls.CallRetrieveParams;\nimport com.telnyx.sdk.models.texml.accounts.calls.CallRetrieveResponse;\n\nCallRetrieveParams params = CallRetrieveParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nCallRetrieveResponse call = client.texml().accounts().calls().retrieve(params);\n```\n\nReturns: `account_sid` (string), `answered_by` (enum: human, machine, not_sure), `caller_name` (string), `date_created` (string), `date_updated` (string), `direction` (enum: inbound, outbound), `duration` (string), `end_time` (string), `from` (string), `from_formatted` (string), `price` (string), `price_unit` (string), `sid` (string), `start_time` (string), `status` (enum: ringing, in-progress, canceled, completed, failed, busy, no-answer), `to` (string), `to_formatted` (string), `uri` (string)\n\n## Update call\n\nUpdate TeXML call. Please note that the keys present in the payload MUST BE formatted in CamelCase as specified in the example.\n\n`POST /texml/Accounts/{account_sid}/Calls/{call_sid}`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.calls.CallUpdateParams;\nimport com.telnyx.sdk.models.texml.accounts.calls.CallUpdateResponse;\nimport com.telnyx.sdk.models.texml.accounts.calls.UpdateCall;\n\nCallUpdateParams params = CallUpdateParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .updateCall(UpdateCall.builder().build())\n    .build();\nCallUpdateResponse call = client.texml().accounts().calls().update(params);\n```\n\nReturns: `account_sid` (string), `answered_by` (enum: human, machine, not_sure), `caller_name` (string), `date_created` (string), `date_updated` (string), `direction` (enum: inbound, outbound), `duration` (string), `end_time` (string), `from` (string), `from_formatted` (string), `price` (string), `price_unit` (string), `sid` (string), `start_time` (string), `status` (enum: ringing, in-progress, canceled, completed, failed, busy, no-answer), `to` (string), `to_formatted` (string), `uri` (string)\n\n## Fetch recordings for a call\n\nReturns recordings for a call identified by call_sid.\n\n`GET /texml/Accounts/{account_sid}/Calls/{call_sid}/Recordings.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.calls.recordingsjson.RecordingsJsonRetrieveRecordingsJsonParams;\nimport com.telnyx.sdk.models.texml.accounts.calls.recordingsjson.RecordingsJsonRetrieveRecordingsJsonResponse;\n\nRecordingsJsonRetrieveRecordingsJsonParams params = RecordingsJsonRetrieveRecordingsJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nRecordingsJsonRetrieveRecordingsJsonResponse response = client.texml().accounts().calls().recordingsJson().retrieveRecordingsJson(params);\n```\n\nReturns: `end` (integer), `first_page_uri` (uri), `next_page_uri` (string), `page` (integer), `page_size` (integer), `previous_page_uri` (uri), `recordings` (array[object]), `start` (integer), `uri` (string)\n\n## Request recording for a call\n\nStarts recording with specified parameters for call identified by call_sid.\n\n`POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Recordings.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.calls.recordingsjson.RecordingsJsonRecordingsJsonParams;\nimport com.telnyx.sdk.models.texml.accounts.calls.recordingsjson.RecordingsJsonRecordingsJsonResponse;\n\nRecordingsJsonRecordingsJsonParams params = RecordingsJsonRecordingsJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nRecordingsJsonRecordingsJsonResponse response = client.texml().accounts().calls().recordingsJson().recordingsJson(params);\n```\n\nReturns: `account_sid` (string), `call_sid` (string), `channels` (enum: 1, 2), `conference_sid` (uuid), `date_created` (date-time), `date_updated` (date-time), `duration` (string | null), `error_code` (string | null), `price` (string | null), `price_unit` (string | null), `sid` (string), `source` (enum: StartCallRecordingAPI, StartConferenceRecordingAPI, OutboundAPI, DialVerb, Conference, RecordVerb, Trunking), `start_time` (date-time), `track` (enum: inbound, outbound, both), `uri` (string)\n\n## Update recording on a call\n\nUpdates recording resource for particular call.\n\n`POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Recordings/{recording_sid}.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.calls.recordings.RecordingRecordingSidJsonParams;\nimport com.telnyx.sdk.models.texml.accounts.calls.recordings.RecordingRecordingSidJsonResponse;\n\nRecordingRecordingSidJsonParams params = RecordingRecordingSidJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .recordingSid(\"6a09cdc3-8948-47f0-aa62-74ac943d6c58\")\n    .build();\nRecordingRecordingSidJsonResponse response = client.texml().accounts().calls().recordings().recordingSidJson(params);\n```\n\nReturns: `account_sid` (string), `call_sid` (string), `channels` (enum: 1, 2), `conference_sid` (uuid), `date_created` (date-time), `date_updated` (date-time), `duration` (string | null), `error_code` (string | null), `price` (string | null), `price_unit` (string | null), `sid` (string), `source` (enum: StartCallRecordingAPI, StartConferenceRecordingAPI, OutboundAPI, DialVerb, Conference, RecordVerb, Trunking), `start_time` (date-time), `track` (enum: inbound, outbound, both), `uri` (string)\n\n## Request siprec session for a call\n\nStarts siprec session with specified parameters for call identified by call_sid.\n\n`POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Siprec.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.calls.CallSiprecJsonParams;\nimport com.telnyx.sdk.models.texml.accounts.calls.CallSiprecJsonResponse;\n\nCallSiprecJsonParams params = CallSiprecJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nCallSiprecJsonResponse response = client.texml().accounts().calls().siprecJson(params);\n```\n\nReturns: `account_sid` (string), `call_sid` (string), `date_created` (string), `date_updated` (string), `error_code` (string), `sid` (string), `start_time` (string), `status` (enum: in-progress, stopped), `track` (enum: both_tracks, inbound_track, outbound_track), `uri` (string)\n\n## Updates siprec session for a call\n\nUpdates siprec session identified by siprec_sid.\n\n`POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Siprec/{siprec_sid}.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.calls.siprec.SiprecSiprecSidJsonParams;\nimport com.telnyx.sdk.models.texml.accounts.calls.siprec.SiprecSiprecSidJsonResponse;\n\nSiprecSiprecSidJsonParams params = SiprecSiprecSidJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .siprecSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nSiprecSiprecSidJsonResponse response = client.texml().accounts().calls().siprec().siprecSidJson(params);\n```\n\nReturns: `account_sid` (string), `call_sid` (string), `date_updated` (string), `error_code` (string), `sid` (string), `status` (enum: in-progress, stopped), `uri` (string)\n\n## Start streaming media from a call.\n\nStarts streaming media from a call to a specific WebSocket address.\n\n`POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Streams.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.calls.CallStreamsJsonParams;\nimport com.telnyx.sdk.models.texml.accounts.calls.CallStreamsJsonResponse;\n\nCallStreamsJsonParams params = CallStreamsJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nCallStreamsJsonResponse response = client.texml().accounts().calls().streamsJson(params);\n```\n\nReturns: `account_sid` (string), `call_sid` (string), `date_updated` (date-time), `name` (string), `sid` (string), `status` (enum: in-progress), `uri` (string)\n\n## Update streaming on a call\n\nUpdates streaming resource for particular call.\n\n`POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Streams/{streaming_sid}.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.calls.streams.StreamStreamingSidJsonParams;\nimport com.telnyx.sdk.models.texml.accounts.calls.streams.StreamStreamingSidJsonResponse;\n\nStreamStreamingSidJsonParams params = StreamStreamingSidJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .streamingSid(\"6a09cdc3-8948-47f0-aa62-74ac943d6c58\")\n    .build();\nStreamStreamingSidJsonResponse response = client.texml().accounts().calls().streams().streamingSidJson(params);\n```\n\nReturns: `account_sid` (string), `call_sid` (string), `date_updated` (date-time), `sid` (string), `status` (enum: stopped), `uri` (string)\n\n## List conference resources\n\nLists conference resources.\n\n`GET /texml/Accounts/{account_sid}/Conferences`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.conferences.ConferenceRetrieveConferencesParams;\nimport com.telnyx.sdk.models.texml.accounts.conferences.ConferenceRetrieveConferencesResponse;\n\nConferenceRetrieveConferencesResponse response = client.texml().accounts().conferences().retrieveConferences(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `conferences` (array[object]), `end` (integer), `first_page_uri` (string), `next_page_uri` (string), `page` (integer), `page_size` (integer), `start` (integer), `uri` (string)\n\n## Fetch a conference resource\n\nReturns a conference resource.\n\n`GET /texml/Accounts/{account_sid}/Conferences/{conference_sid}`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.conferences.ConferenceRetrieveParams;\nimport com.telnyx.sdk.models.texml.accounts.conferences.ConferenceRetrieveResponse;\n\nConferenceRetrieveParams params = ConferenceRetrieveParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .conferenceSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nConferenceRetrieveResponse conference = client.texml().accounts().conferences().retrieve(params);\n```\n\nReturns: `account_sid` (string), `api_version` (string), `call_sid_ending_conference` (string), `date_created` (string), `date_updated` (string), `friendly_name` (string), `reason_conference_ended` (enum: participant-with-end-conference-on-exit-left, last-participant-left, conference-ended-via-api, time-exceeded), `region` (string), `sid` (string), `status` (enum: init, in-progress, completed), `subresource_uris` (object), `uri` (string)\n\n## Update a conference resource\n\nUpdates a conference resource.\n\n`POST /texml/Accounts/{account_sid}/Conferences/{conference_sid}`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.conferences.ConferenceUpdateParams;\nimport com.telnyx.sdk.models.texml.accounts.conferences.ConferenceUpdateResponse;\n\nConferenceUpdateParams params = ConferenceUpdateParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .conferenceSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nConferenceUpdateResponse conference = client.texml().accounts().conferences().update(params);\n```\n\nReturns: `account_sid` (string), `api_version` (string), `call_sid_ending_conference` (string), `date_created` (string), `date_updated` (string), `friendly_name` (string), `reason_conference_ended` (enum: participant-with-end-conference-on-exit-left, last-participant-left, conference-ended-via-api, time-exceeded), `region` (string), `sid` (string), `status` (enum: init, in-progress, completed), `subresource_uris` (object), `uri` (string)\n\n## List conference participants\n\nLists conference participants\n\n`GET /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Participants`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.conferences.participants.ParticipantRetrieveParticipantsParams;\nimport com.telnyx.sdk.models.texml.accounts.conferences.participants.ParticipantRetrieveParticipantsResponse;\n\nParticipantRetrieveParticipantsParams params = ParticipantRetrieveParticipantsParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .conferenceSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nParticipantRetrieveParticipantsResponse response = client.texml().accounts().conferences().participants().retrieveParticipants(params);\n```\n\nReturns: `end` (integer), `first_page_uri` (string), `next_page_uri` (string), `page` (integer), `page_size` (integer), `participants` (array[object]), `start` (integer), `uri` (string)\n\n## Dial a new conference participant\n\nDials a new conference participant\n\n`POST /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Participants`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.conferences.participants.ParticipantParticipantsParams;\nimport com.telnyx.sdk.models.texml.accounts.conferences.participants.ParticipantParticipantsResponse;\n\nParticipantParticipantsParams params = ParticipantParticipantsParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .conferenceSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nParticipantParticipantsResponse response = client.texml().accounts().conferences().participants().participants(params);\n```\n\nReturns: `account_sid` (string), `call_sid` (string), `coaching` (boolean), `coaching_call_sid` (string), `conference_sid` (uuid), `end_conference_on_exit` (boolean), `hold` (boolean), `muted` (boolean), `status` (enum: connecting, connected, completed), `uri` (string)\n\n## Get conference participant resource\n\nGets conference participant resource\n\n`GET /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Participants/{call_sid_or_participant_label}`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.conferences.participants.ParticipantRetrieveParams;\nimport com.telnyx.sdk.models.texml.accounts.conferences.participants.ParticipantRetrieveResponse;\n\nParticipantRetrieveParams params = ParticipantRetrieveParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .conferenceSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSidOrParticipantLabel(\"participant-1\")\n    .build();\nParticipantRetrieveResponse participant = client.texml().accounts().conferences().participants().retrieve(params);\n```\n\nReturns: `account_sid` (string), `api_version` (string), `call_sid` (string), `call_sid_legacy` (string), `coaching` (boolean), `coaching_call_sid` (string), `coaching_call_sid_legacy` (string), `conference_sid` (uuid), `date_created` (string), `date_updated` (string), `end_conference_on_exit` (boolean), `hold` (boolean), `muted` (boolean), `status` (enum: connecting, connected, completed), `uri` (string)\n\n## Update a conference participant\n\nUpdates a conference participant\n\n`POST /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Participants/{call_sid_or_participant_label}`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.conferences.participants.ParticipantUpdateParams;\nimport com.telnyx.sdk.models.texml.accounts.conferences.participants.ParticipantUpdateResponse;\n\nParticipantUpdateParams params = ParticipantUpdateParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .conferenceSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSidOrParticipantLabel(\"participant-1\")\n    .build();\nParticipantUpdateResponse participant = client.texml().accounts().conferences().participants().update(params);\n```\n\nReturns: `account_sid` (string), `api_version` (string), `call_sid` (string), `call_sid_legacy` (string), `coaching` (boolean), `coaching_call_sid` (string), `coaching_call_sid_legacy` (string), `conference_sid` (uuid), `date_created` (string), `date_updated` (string), `end_conference_on_exit` (boolean), `hold` (boolean), `muted` (boolean), `status` (enum: connecting, connected, completed), `uri` (string)\n\n## Delete a conference participant\n\nDeletes a conference participant\n\n`DELETE /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Participants/{call_sid_or_participant_label}`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.conferences.participants.ParticipantDeleteParams;\n\nParticipantDeleteParams params = ParticipantDeleteParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .conferenceSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .callSidOrParticipantLabel(\"participant-1\")\n    .build();\nclient.texml().accounts().conferences().participants().delete(params);\n```\n\n## List conference recordings\n\nLists conference recordings\n\n`GET /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Recordings`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.conferences.ConferenceRetrieveRecordingsParams;\nimport com.telnyx.sdk.models.texml.accounts.conferences.ConferenceRetrieveRecordingsResponse;\n\nConferenceRetrieveRecordingsParams params = ConferenceRetrieveRecordingsParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .conferenceSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nConferenceRetrieveRecordingsResponse response = client.texml().accounts().conferences().retrieveRecordings(params);\n```\n\nReturns: `end` (integer), `first_page_uri` (string), `next_page_uri` (string), `page` (integer), `page_size` (integer), `participants` (array[object]), `recordings` (array[object]), `start` (integer), `uri` (string)\n\n## Fetch recordings for a conference\n\nReturns recordings for a conference identified by conference_sid.\n\n`GET /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Recordings.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.conferences.ConferenceRetrieveRecordingsJsonParams;\nimport com.telnyx.sdk.models.texml.accounts.conferences.ConferenceRetrieveRecordingsJsonResponse;\n\nConferenceRetrieveRecordingsJsonParams params = ConferenceRetrieveRecordingsJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .conferenceSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nConferenceRetrieveRecordingsJsonResponse response = client.texml().accounts().conferences().retrieveRecordingsJson(params);\n```\n\nReturns: `end` (integer), `first_page_uri` (uri), `next_page_uri` (string), `page` (integer), `page_size` (integer), `previous_page_uri` (uri), `recordings` (array[object]), `start` (integer), `uri` (string)\n\n## List queue resources\n\nLists queue resources.\n\n`GET /texml/Accounts/{account_sid}/Queues`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.queues.QueueListPage;\nimport com.telnyx.sdk.models.texml.accounts.queues.QueueListParams;\n\nQueueListPage page = client.texml().accounts().queues().list(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `end` (integer), `first_page_uri` (string), `next_page_uri` (string), `page` (integer), `page_size` (integer), `queues` (array[object]), `start` (integer), `uri` (string)\n\n## Create a new queue\n\nCreates a new queue resource.\n\n`POST /texml/Accounts/{account_sid}/Queues`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.queues.QueueCreateParams;\nimport com.telnyx.sdk.models.texml.accounts.queues.QueueCreateResponse;\n\nQueueCreateResponse queue = client.texml().accounts().queues().create(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `account_sid` (string), `average_wait_time` (integer), `current_size` (integer), `date_created` (string), `date_updated` (string), `max_size` (integer), `sid` (string), `subresource_uris` (object), `uri` (string)\n\n## Fetch a queue resource\n\nReturns a queue resource.\n\n`GET /texml/Accounts/{account_sid}/Queues/{queue_sid}`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.queues.QueueRetrieveParams;\nimport com.telnyx.sdk.models.texml.accounts.queues.QueueRetrieveResponse;\n\nQueueRetrieveParams params = QueueRetrieveParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .queueSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nQueueRetrieveResponse queue = client.texml().accounts().queues().retrieve(params);\n```\n\nReturns: `account_sid` (string), `average_wait_time` (integer), `current_size` (integer), `date_created` (string), `date_updated` (string), `max_size` (integer), `sid` (string), `subresource_uris` (object), `uri` (string)\n\n## Update a queue resource\n\nUpdates a queue resource.\n\n`POST /texml/Accounts/{account_sid}/Queues/{queue_sid}`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.queues.QueueUpdateParams;\nimport com.telnyx.sdk.models.texml.accounts.queues.QueueUpdateResponse;\n\nQueueUpdateParams params = QueueUpdateParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .queueSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nQueueUpdateResponse queue = client.texml().accounts().queues().update(params);\n```\n\nReturns: `account_sid` (string), `average_wait_time` (integer), `current_size` (integer), `date_created` (string), `date_updated` (string), `max_size` (integer), `sid` (string), `subresource_uris` (object), `uri` (string)\n\n## Delete a queue resource\n\nDelete a queue resource.\n\n`DELETE /texml/Accounts/{account_sid}/Queues/{queue_sid}`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.queues.QueueDeleteParams;\n\nQueueDeleteParams params = QueueDeleteParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .queueSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .build();\nclient.texml().accounts().queues().delete(params);\n```\n\n## Fetch multiple recording resources\n\nReturns multiple recording resources for an account.\n\n`GET /texml/Accounts/{account_sid}/Recordings.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.AccountRetrieveRecordingsJsonParams;\nimport com.telnyx.sdk.models.texml.accounts.AccountRetrieveRecordingsJsonResponse;\n\nAccountRetrieveRecordingsJsonResponse response = client.texml().accounts().retrieveRecordingsJson(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `end` (integer), `first_page_uri` (uri), `next_page_uri` (string), `page` (integer), `page_size` (integer), `previous_page_uri` (uri), `recordings` (array[object]), `start` (integer), `uri` (string)\n\n## Fetch recording resource\n\nReturns recording resource identified by recording id.\n\n`GET /texml/Accounts/{account_sid}/Recordings/{recording_sid}.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.TexmlGetCallRecordingResponseBody;\nimport com.telnyx.sdk.models.texml.accounts.recordings.json.JsonRetrieveRecordingSidJsonParams;\n\nJsonRetrieveRecordingSidJsonParams params = JsonRetrieveRecordingSidJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .recordingSid(\"6a09cdc3-8948-47f0-aa62-74ac943d6c58\")\n    .build();\nTexmlGetCallRecordingResponseBody texmlGetCallRecordingResponseBody = client.texml().accounts().recordings().json().retrieveRecordingSidJson(params);\n```\n\nReturns: `account_sid` (string), `call_sid` (string), `channels` (enum: 1, 2), `conference_sid` (uuid), `date_created` (date-time), `date_updated` (date-time), `duration` (string | null), `error_code` (string | null), `media_url` (uri), `sid` (string), `source` (enum: StartCallRecordingAPI, StartConferenceRecordingAPI, OutboundAPI, DialVerb, Conference, RecordVerb, Trunking), `start_time` (date-time), `status` (enum: in-progress, completed, paused, stopped), `subresources_uris` (object), `uri` (string)\n\n## Delete recording resource\n\nDeletes recording resource identified by recording id.\n\n`DELETE /texml/Accounts/{account_sid}/Recordings/{recording_sid}.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.recordings.json.JsonDeleteRecordingSidJsonParams;\n\nJsonDeleteRecordingSidJsonParams params = JsonDeleteRecordingSidJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .recordingSid(\"6a09cdc3-8948-47f0-aa62-74ac943d6c58\")\n    .build();\nclient.texml().accounts().recordings().json().deleteRecordingSidJson(params);\n```\n\n## List recording transcriptions\n\nReturns multiple recording transcription resources for an account.\n\n`GET /texml/Accounts/{account_sid}/Transcriptions.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.AccountRetrieveTranscriptionsJsonParams;\nimport com.telnyx.sdk.models.texml.accounts.AccountRetrieveTranscriptionsJsonResponse;\n\nAccountRetrieveTranscriptionsJsonResponse response = client.texml().accounts().retrieveTranscriptionsJson(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `end` (integer), `first_page_uri` (uri), `next_page_uri` (string), `page` (integer), `page_size` (integer), `previous_page_uri` (uri), `start` (integer), `transcriptions` (array[object]), `uri` (string)\n\n## Fetch a recording transcription resource\n\nReturns the recording transcription resource identified by its ID.\n\n`GET /texml/Accounts/{account_sid}/Transcriptions/{recording_transcription_sid}.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.transcriptions.json.JsonRetrieveRecordingTranscriptionSidJsonParams;\nimport com.telnyx.sdk.models.texml.accounts.transcriptions.json.JsonRetrieveRecordingTranscriptionSidJsonResponse;\n\nJsonRetrieveRecordingTranscriptionSidJsonParams params = JsonRetrieveRecordingTranscriptionSidJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .recordingTranscriptionSid(\"6a09cdc3-8948-47f0-aa62-74ac943d6c58\")\n    .build();\nJsonRetrieveRecordingTranscriptionSidJsonResponse response = client.texml().accounts().transcriptions().json().retrieveRecordingTranscriptionSidJson(params);\n```\n\nReturns: `account_sid` (string), `api_version` (string), `call_sid` (string), `date_created` (date-time), `date_updated` (date-time), `duration` (string | null), `recording_sid` (string), `sid` (string), `status` (enum: in-progress, completed), `transcription_text` (string), `uri` (string)\n\n## Delete a recording transcription\n\nPermanently deletes a recording transcription.\n\n`DELETE /texml/Accounts/{account_sid}/Transcriptions/{recording_transcription_sid}.json`\n\n```java\nimport com.telnyx.sdk.models.texml.accounts.transcriptions.json.JsonDeleteRecordingTranscriptionSidJsonParams;\n\nJsonDeleteRecordingTranscriptionSidJsonParams params = JsonDeleteRecordingTranscriptionSidJsonParams.builder()\n    .accountSid(\"550e8400-e29b-41d4-a716-446655440000\")\n    .recordingTranscriptionSid(\"6a09cdc3-8948-47f0-aa62-74ac943d6c58\")\n    .build();\nclient.texml().accounts().transcriptions().json().deleteRecordingTranscriptionSidJson(params);\n```\n\n## Create a TeXML secret\n\nCreate a TeXML secret which can be later used as a Dynamic Parameter for TeXML when using Mustache Templates in your TeXML. In your TeXML you will be able to use your secret name, and this name will be replaced by the actual secret value when processing the TeXML on Telnyx side. The secrets are not visible in any logs.\n\n`POST /texml/secrets` — Required: `name`, `value`\n\n```java\nimport com.telnyx.sdk.models.texml.TexmlSecretsParams;\nimport com.telnyx.sdk.models.texml.TexmlSecretsResponse;\n\nTexmlSecretsParams params = TexmlSecretsParams.builder()\n    .name(\"My Secret Name\")\n    .value(\"My Secret Value\")\n    .build();\nTexmlSecretsResponse response = client.texml().secrets(params);\n```\n\nReturns: `name` (string), `value` (enum: REDACTED)\n\n## List all TeXML Applications\n\nReturns a list of your TeXML Applications.\n\n`GET /texml_applications`\n\n```java\nimport com.telnyx.sdk.models.texmlapplications.TexmlApplicationListPage;\nimport com.telnyx.sdk.models.texmlapplications.TexmlApplicationListParams;\n\nTexmlApplicationListPage page = client.texmlApplications().list();\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `call_cost_in_webhooks` (boolean), `created_at` (string), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `first_command_timeout` (boolean), `first_command_timeout_secs` (integer), `friendly_name` (string), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `status_callback` (uri), `status_callback_method` (enum: get, post), `tags` (array[string]), `updated_at` (string), `voice_fallback_url` (uri), `voice_method` (enum: get, post), `voice_url` (uri)\n\n## Creates a TeXML Application\n\nCreates a TeXML Application.\n\n`POST /texml_applications` — Required: `friendly_name`, `voice_url`\n\nOptional: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `call_cost_in_webhooks` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `first_command_timeout` (boolean), `first_command_timeout_secs` (integer), `inbound` (object), `outbound` (object), `status_callback` (uri), `status_callback_method` (enum: get, post), `tags` (array[string]), `voice_fallback_url` (uri), `voice_method` (enum: get, post)\n\n```java\nimport com.telnyx.sdk.models.texmlapplications.TexmlApplicationCreateParams;\nimport com.telnyx.sdk.models.texmlapplications.TexmlApplicationCreateResponse;\n\nTexmlApplicationCreateParams params = TexmlApplicationCreateParams.builder()\n    .friendlyName(\"call-router\")\n    .voiceUrl(\"https://example.com\")\n    .build();\nTexmlApplicationCreateResponse texmlApplication = client.texmlApplications().create(params);\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `call_cost_in_webhooks` (boolean), `created_at` (string), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `first_command_timeout` (boolean), `first_command_timeout_secs` (integer), `friendly_name` (string), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `status_callback` (uri), `status_callback_method` (enum: get, post), `tags` (array[string]), `updated_at` (string), `voice_fallback_url` (uri), `voice_method` (enum: get, post), `voice_url` (uri)\n\n## Retrieve a TeXML Application\n\nRetrieves the details of an existing TeXML Application.\n\n`GET /texml_applications/{id}`\n\n```java\nimport com.telnyx.sdk.models.texmlapplications.TexmlApplicationRetrieveParams;\nimport com.telnyx.sdk.models.texmlapplications.TexmlApplicationRetrieveResponse;\n\nTexmlApplicationRetrieveResponse texmlApplication = client.texmlApplications().retrieve(\"1293384261075731499\");\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `call_cost_in_webhooks` (boolean), `created_at` (string), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `first_command_timeout` (boolean), `first_command_timeout_secs` (integer), `friendly_name` (string), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `status_callback` (uri), `status_callback_method` (enum: get, post), `tags` (array[string]), `updated_at` (string), `voice_fallback_url` (uri), `voice_method` (enum: get, post), `voice_url` (uri)\n\n## Update a TeXML Application\n\nUpdates settings of an existing TeXML Application.\n\n`PATCH /texml_applications/{id}` — Required: `friendly_name`, `voice_url`\n\nOptional: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `call_cost_in_webhooks` (boolean), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `first_command_timeout` (boolean), `first_command_timeout_secs` (integer), `inbound` (object), `outbound` (object), `status_callback` (uri), `status_callback_method` (enum: get, post), `tags` (array[string]), `voice_fallback_url` (uri), `voice_method` (enum: get, post)\n\n```java\nimport com.telnyx.sdk.models.texmlapplications.TexmlApplicationUpdateParams;\nimport com.telnyx.sdk.models.texmlapplications.TexmlApplicationUpdateResponse;\n\nTexmlApplicationUpdateParams params = TexmlApplicationUpdateParams.builder()\n    .id(\"1293384261075731499\")\n    .friendlyName(\"call-router\")\n    .voiceUrl(\"https://example.com\")\n    .build();\nTexmlApplicationUpdateResponse texmlApplication = client.texmlApplications().update(params);\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `call_cost_in_webhooks` (boolean), `created_at` (string), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `first_command_timeout` (boolean), `first_command_timeout_secs` (integer), `friendly_name` (string), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `status_callback` (uri), `status_callback_method` (enum: get, post), `tags` (array[string]), `updated_at` (string), `voice_fallback_url` (uri), `voice_method` (enum: get, post), `voice_url` (uri)\n\n## Deletes a TeXML Application\n\nDeletes a TeXML Application.\n\n`DELETE /texml_applications/{id}`\n\n```java\nimport com.telnyx.sdk.models.texmlapplications.TexmlApplicationDeleteParams;\nimport com.telnyx.sdk.models.texmlapplications.TexmlApplicationDeleteResponse;\n\nTexmlApplicationDeleteResponse texmlApplication = client.texmlApplications().delete(\"1293384261075731499\");\n```\n\nReturns: `active` (boolean), `anchorsite_override` (enum: Latency, Chicago, IL, Ashburn, VA, San Jose, CA, Sydney, Australia, Amsterdam, Netherlands, London, UK, Toronto, Canada, Vancouver, Canada, Frankfurt, Germany), `call_cost_in_webhooks` (boolean), `created_at` (string), `dtmf_type` (enum: RFC 2833, Inband, SIP INFO), `first_command_timeout` (boolean), `first_command_timeout_secs` (integer), `friendly_name` (string), `id` (string), `inbound` (object), `outbound` (object), `record_type` (string), `status_callback` (uri), `status_callback_method` (enum: get, post), `tags` (array[string]), `updated_at` (string), `voice_fallback_url` (uri), `voice_method` (enum: get, post), `voice_url` (uri)","tags":["telnyx","texml","java","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk"],"capabilities":["skill","source-team-telnyx","skill-telnyx-texml-java","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-texml-java","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 (38,719 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:48.763Z","embedding":null,"createdAt":"2026-04-18T22:07:58.940Z","updatedAt":"2026-04-22T00:54:48.763Z","lastSeenAt":"2026-04-22T00:54:48.763Z","tsv":"'+13120001234':389 '+13121230000':391 '-1':1765,1870,1973 '-47':897,1275,2519,2630,2742,2829 '-8948':896,1274,2518,2629,2741,2828 '/calls':177,249,427,552,672,754,865,994,1082,1171,1243 '/conferences':1318,1371,1477,1581,1653,1732,1837,1942,1991,2069 '/participants':1584,1656,1735,1840,1945 '/queues':2140,2194,2251,2323,2395 '/recordings':868,1994,2497,2610 '/recordings.json':675,757,2072,2439 '/siprec':1085 '/siprec.json':997 '/streams':1246 '/streams.json':1174 '/texml/accounts':174,246,424,549,669,751,862,991,1079,1168,1240,1315,1368,1474,1578,1650,1729,1834,1939,1988,2066,2137,2191,2248,2320,2392,2436,2494,2607,2654,2716,2805 '/texml/secrets':2906 '/texml_applications':2950,3059,3261,3375,3576 '/transcriptions':2719,2808 '/transcriptions.json':2657 '1':798,920,2542 '1000':105 '1293384261075731499':3272,3464,3587 '2':799,921,2543 '2833':2998,3100,3196,3311,3417,3515,3626 '401':57,109 '403':113 '404':116 '41d4':192,380,442,449,569,576,688,695,770,777,884,891,1010,1017,1101,1108,1115,1187,1194,1262,1269,1333,1386,1393,1492,1499,1597,1604,1669,1676,1753,1760,1858,1865,1961,1968,2007,2014,2085,2092,2155,2209,2266,2273,2338,2345,2408,2415,2453,2513,2624,2671,2736,2823 '422':53,83,120 '429':50,95,126 '446655440000':194,382,444,451,571,578,690,697,772,779,886,893,1012,1019,1103,1110,1117,1189,1196,1264,1271,1335,1388,1395,1494,1501,1599,1606,1671,1678,1755,1762,1860,1867,1963,1970,2009,2016,2087,2094,2157,2211,2268,2275,2340,2347,2410,2417,2455,2515,2626,2673,2738,2825 '550e8400':189,377,439,446,566,573,685,692,767,774,881,888,1007,1014,1098,1105,1112,1184,1191,1259,1266,1330,1383,1390,1489,1496,1594,1601,1666,1673,1750,1757,1855,1862,1958,1965,2004,2011,2082,2089,2152,2206,2263,2270,2335,2342,2405,2412,2450,2510,2621,2668,2733,2820 '6.36.0':12,17 '6a09cdc3':895,1273,2517,2628,2740,2827 '74ac943d6c58':901,1279,2523,2634,2746,2833 'a716':193,381,443,450,570,577,689,696,771,778,885,892,1011,1018,1102,1109,1116,1188,1195,1263,1270,1334,1387,1394,1493,1500,1598,1605,1670,1677,1754,1761,1859,1866,1962,1969,2008,2015,2086,2093,2156,2210,2267,2274,2339,2346,2409,2416,2454,2514,2625,2672,2737,2824 'aa62':900,1278,2522,2633,2745,2832 'abl':2873 'account':167,175,186,247,396,425,456,461,550,586,591,670,702,752,784,790,863,906,912,992,1024,1029,1080,1122,1128,1169,1201,1206,1241,1284,1290,1316,1327,1369,1400,1405,1475,1506,1511,1579,1611,1651,1683,1689,1730,1770,1776,1835,1875,1881,1940,1976,1989,2021,2067,2099,2138,2149,2192,2203,2213,2249,2280,2285,2321,2352,2357,2393,2420,2434,2437,2448,2495,2528,2534,2608,2637,2652,2655,2666,2717,2751,2757,2806,2836 'accountretrieverecordingsjsonrespons':2445 'accountretrievetranscriptionsjsonrespons':2663 'accountsid':376,438,565,684,766,880,1006,1097,1183,1258,1382,1488,1593,1665,1749,1854,1957,2003,2081,2262,2334,2404,2509,2620,2732,2819 'activ':2961,3066,3159,3274,3383,3478,3589 'actual':2887 'address':1166 'alreadi':33 'alway':58 'amsterdam':2976,3081,3174,3289,3398,3493,3604 'anchorsit':2963,3068,3161,3276,3385,3480,3591 'answer':334,464,516,594,646 'api':41,77,111,1408,1445,1514,1551,1779,1884,2760 'app':386 'applic':2941,2948,3053,3057,3251,3259,3366,3373,3570,3574 'applicationsid':253,383 'array':197,270,728,1338,1633,2042,2045,2124,2175,2477,2697,3033,3127,3231,3346,3444,3550,3661 'ashburn':2969,3074,3167,3282,3391,3486,3597 'assum':30 'asyncamd':255 'asyncamdstatuscallback':257 'asyncamdstatuscallbackmethod':259 'australia':325,2975,3080,3173,3288,3397,3492,3603 'authent':55 'automat':144 'autopag':142 'averag':2216,2288,2360 'backoff':103,132 'barg':344 'boolean':256,266,268,294,315,1696,1708,1710,1712,1790,1813,1815,1817,1895,1918,1920,1922,2962,2990,3005,3067,3095,3107,3160,3188,3203,3275,3303,3318,3384,3412,3424,3479,3507,3522,3590,3618,3633 'build':392,452,581,582,698,780,902,1020,1118,1197,1280,1396,1502,1607,1679,1766,1871,1974,2017,2095,2276,2348,2418,2524,2635,2747,2834,2926,3152,3471 'busi':513,643 'ca':2973,3078,3171,3286,3395,3490,3601 'call':42,159,163,187,196,221,226,397,398,409,413,428,454,457,525,528,553,584,587,658,663,666,673,703,738,745,748,755,785,793,854,860,866,907,915,977,985,988,995,1025,1032,1070,1083,1123,1131,1155,1161,1172,1202,1209,1232,1238,1244,1285,1293,1411,1517,1692,1698,1736,1782,1785,1792,1796,1841,1887,1890,1897,1901,1946,2537,2763,2986,3091,3148,3184,3299,3408,3467,3503,3614 'call-rout':3147,3466 'callback':3024,3027,3118,3121,3222,3225,3337,3340,3435,3438,3541,3544,3652,3655 'callcallsparam':373 'callcallsparams.builder':375 'callcallsrespons':393 'caller':471,601 'callerid':263 'callretrievecallsrespons':183 'callretrieveparam':435 'callretrieveparams.builder':437 'callretrieverespons':453 'callsid':417,445,572,691,773,887,1013,1104,1190,1265 'callsidorparticipantlabel':1763,1868,1971 'callsiprecjsonparam':1003 'callsiprecjsonparams.builder':1005 'callsiprecjsonrespons':1021 'callstreamsjsonparam':1180 'callstreamsjsonparams.builder':1182 'callstreamsjsonrespons':1198 'callupdateparam':562 'callupdateparams.builder':564 'callupdaterespons':583 'camelcas':542 'canada':324,2981,2983,3086,3088,3179,3181,3294,3296,3403,3405,3498,3500,3609,3611 'cancel':510,640 'cancelplaybackondetectmessageend':265 'cancelplaybackonmachinedetect':267 'catch':73 'channel':796,918,2540 'check':87,123 'chicago':2967,3072,3165,3280,3389,3484,3595 'client':25,31 'client.messages':70 'client.texml':185,395,455,585,701,783,905,1023,1121,1200,1283,1326,1399,1505,1610,1682,1769,1874,1975,2020,2098,2148,2202,2279,2351,2419,2447,2527,2636,2665,2750,2835,2929 'client.texmlapplications':2958,3155,3270,3474,3585 'coach':1695,1697,1789,1791,1795,1894,1896,1900 'code':63,108,817,939,1042,1138,2561 'com.telnyx.sdk':10,15 'com.telnyx.sdk.client.okhttp.telnyxokhttpclient':23 'com.telnyx.sdk.client.telnyxclient':21 'com.telnyx.sdk.errors.telnyxserviceexception':66 'com.telnyx.sdk.models.texml.accounts.accountretrieverecordingsjsonparams':2442 'com.telnyx.sdk.models.texml.accounts.accountretrieverecordingsjsonresponse':2444 'com.telnyx.sdk.models.texml.accounts.accountretrievetranscriptionsjsonparams':2660 'com.telnyx.sdk.models.texml.accounts.accountretrievetranscriptionsjsonresponse':2662 'com.telnyx.sdk.models.texml.accounts.calls.callcallsparams':370 'com.telnyx.sdk.models.texml.accounts.calls.callcallsresponse':372 'com.telnyx.sdk.models.texml.accounts.calls.callretrievecallsparams':180 'com.telnyx.sdk.models.texml.accounts.calls.callretrievecallsresponse':182 'com.telnyx.sdk.models.texml.accounts.calls.callretrieveparams':432 'com.telnyx.sdk.models.texml.accounts.calls.callretrieveresponse':434 'com.telnyx.sdk.models.texml.accounts.calls.callsiprecjsonparams':1000 'com.telnyx.sdk.models.texml.accounts.calls.callsiprecjsonresponse':1002 'com.telnyx.sdk.models.texml.accounts.calls.callstreamsjsonparams':1177 'com.telnyx.sdk.models.texml.accounts.calls.callstreamsjsonresponse':1179 'com.telnyx.sdk.models.texml.accounts.calls.callupdateparams':557 'com.telnyx.sdk.models.texml.accounts.calls.callupdateresponse':559 'com.telnyx.sdk.models.texml.accounts.calls.recordings.recordingrecordingsidjsonparams':874 'com.telnyx.sdk.models.texml.accounts.calls.recordings.recordingrecordingsidjsonresponse':876 'com.telnyx.sdk.models.texml.accounts.calls.recordingsjson.recordingsjsonrecordingsjsonparams':760 'com.telnyx.sdk.models.texml.accounts.calls.recordingsjson.recordingsjsonrecordingsjsonresponse':762 'com.telnyx.sdk.models.texml.accounts.calls.recordingsjson.recordingsjsonretrieverecordingsjsonparams':678 'com.telnyx.sdk.models.texml.accounts.calls.recordingsjson.recordingsjsonretrieverecordingsjsonresponse':680 'com.telnyx.sdk.models.texml.accounts.calls.siprec.siprecsiprecsidjsonparams':1091 'com.telnyx.sdk.models.texml.accounts.calls.siprec.siprecsiprecsidjsonresponse':1093 'com.telnyx.sdk.models.texml.accounts.calls.streams.streamstreamingsidjsonparams':1252 'com.telnyx.sdk.models.texml.accounts.calls.streams.streamstreamingsidjsonresponse':1254 'com.telnyx.sdk.models.texml.accounts.calls.updatecall':561 'com.telnyx.sdk.models.texml.accounts.conferences.conferenceretrieveconferencesparams':1321 'com.telnyx.sdk.models.texml.accounts.conferences.conferenceretrieveconferencesresponse':1323 'com.telnyx.sdk.models.texml.accounts.conferences.conferenceretrieveparams':1376 'com.telnyx.sdk.models.texml.accounts.conferences.conferenceretrieverecordingsjsonparams':2075 'com.telnyx.sdk.models.texml.accounts.conferences.conferenceretrieverecordingsjsonresponse':2077 'com.telnyx.sdk.models.texml.accounts.conferences.conferenceretrieverecordingsparams':1997 'com.telnyx.sdk.models.texml.accounts.conferences.conferenceretrieverecordingsresponse':1999 'com.telnyx.sdk.models.texml.accounts.conferences.conferenceretrieveresponse':1378 'com.telnyx.sdk.models.texml.accounts.conferences.conferenceupdateparams':1482 'com.telnyx.sdk.models.texml.accounts.conferences.conferenceupdateresponse':1484 'com.telnyx.sdk.models.texml.accounts.conferences.participants.participantdeleteparams':1953 'com.telnyx.sdk.models.texml.accounts.conferences.participants.participantparticipantsparams':1659 'com.telnyx.sdk.models.texml.accounts.conferences.participants.participantparticipantsresponse':1661 'com.telnyx.sdk.models.texml.accounts.conferences.participants.participantretrieveparams':1743 'com.telnyx.sdk.models.texml.accounts.conferences.participants.participantretrieveparticipantsparams':1587 'com.telnyx.sdk.models.texml.accounts.conferences.participants.participantretrieveparticipantsresponse':1589 'com.telnyx.sdk.models.texml.accounts.conferences.participants.participantretrieveresponse':1745 'com.telnyx.sdk.models.texml.accounts.conferences.participants.participantupdateparams':1848 'com.telnyx.sdk.models.texml.accounts.conferences.participants.participantupdateresponse':1850 'com.telnyx.sdk.models.texml.accounts.queues.queuecreateparams':2197 'com.telnyx.sdk.models.texml.accounts.queues.queuecreateresponse':2199 'com.telnyx.sdk.models.texml.accounts.queues.queuedeleteparams':2400 'com.telnyx.sdk.models.texml.accounts.queues.queuelistpage':2143 'com.telnyx.sdk.models.texml.accounts.queues.queuelistparams':2145 'com.telnyx.sdk.models.texml.accounts.queues.queueretrieveparams':2256 'com.telnyx.sdk.models.texml.accounts.queues.queueretrieveresponse':2258 'com.telnyx.sdk.models.texml.accounts.queues.queueupdateparams':2328 'com.telnyx.sdk.models.texml.accounts.queues.queueupdateresponse':2330 'com.telnyx.sdk.models.texml.accounts.recordings.json.jsondeleterecordingsidjsonparams':2616 'com.telnyx.sdk.models.texml.accounts.recordings.json.jsonretrieverecordingsidjsonparams':2505 'com.telnyx.sdk.models.texml.accounts.texmlgetcallrecordingresponsebody':2503 'com.telnyx.sdk.models.texml.accounts.transcriptions.json.jsondeleterecordingtranscriptionsidjsonparams':2815 'com.telnyx.sdk.models.texml.accounts.transcriptions.json.jsonretrieverecordingtranscriptionsidjsonparams':2726 'com.telnyx.sdk.models.texml.accounts.transcriptions.json.jsonretrieverecordingtranscriptionsidjsonresponse':2728 'com.telnyx.sdk.models.texml.texmlsecretsparams':2912 'com.telnyx.sdk.models.texml.texmlsecretsresponse':2914 'com.telnyx.sdk.models.texmlapplications.texmlapplicationcreateparams':3140 'com.telnyx.sdk.models.texmlapplications.texmlapplicationcreateresponse':3142 'com.telnyx.sdk.models.texmlapplications.texmlapplicationdeleteparams':3580 'com.telnyx.sdk.models.texmlapplications.texmlapplicationdeleteresponse':3582 'com.telnyx.sdk.models.texmlapplications.texmlapplicationlistpage':2953 'com.telnyx.sdk.models.texmlapplications.texmlapplicationlistparams':2955 'com.telnyx.sdk.models.texmlapplications.texmlapplicationretrieveparams':3265 'com.telnyx.sdk.models.texmlapplications.texmlapplicationretrieveresponse':3267 'com.telnyx.sdk.models.texmlapplications.texmlapplicationupdateparams':3457 'com.telnyx.sdk.models.texmlapplications.texmlapplicationupdateresponse':3459 'command':3003,3007,3105,3109,3201,3205,3316,3320,3422,3426,3520,3524,3631,3635 'common':106 'complet':335,511,641,1459,1565,1717,1822,1927,2588,2789 'confer':800,835,922,957,1309,1312,1328,1337,1361,1365,1372,1398,1401,1414,1426,1433,1442,1467,1471,1478,1504,1507,1520,1532,1539,1548,1572,1575,1582,1612,1642,1647,1654,1684,1701,1705,1721,1725,1733,1771,1800,1810,1827,1831,1838,1876,1905,1915,1932,1936,1943,1977,1982,1985,1992,2022,2055,2060,2063,2070,2100,2544,2575 'conference-ended-via-api':1441,1547 'conferenceretrieveconferencesrespons':1324 'conferenceretrieveparam':1379 'conferenceretrieveparams.builder':1381 'conferenceretrieverecordingsjsonparam':2078 'conferenceretrieverecordingsjsonparams.builder':2080 'conferenceretrieverecordingsjsonrespons':2096 'conferenceretrieverecordingsparam':2000 'conferenceretrieverecordingsparams.builder':2002 'conferenceretrieverecordingsrespons':2018 'conferenceretrieverespons':1397 'conferencesid':1389,1495,1600,1672,1756,1861,1964,2010,2088 'conferenceupdateparam':1485 'conferenceupdateparams.builder':1487 'conferenceupdaterespons':1503 'configur':236 'connect':239,1715,1716,1820,1821,1925,1926 'consist':172,422 'control':152,243 'cost':2987,3092,3185,3300,3409,3504,3615 'creat':475,605,804,926,1036,1417,1523,1804,1909,2181,2185,2205,2224,2296,2368,2548,2767,2841,2845,2991,3050,3054,3156,3189,3304,3508,3619 'current':2220,2292,2364 'customhead':269 'date':474,477,604,607,803,806,808,811,841,925,928,930,933,963,1035,1038,1134,1212,1215,1296,1299,1416,1419,1522,1525,1803,1806,1908,1911,2223,2226,2295,2298,2367,2370,2547,2550,2552,2555,2581,2766,2769,2771,2774 'date-tim':805,810,840,927,932,962,1214,1298,2549,2554,2580,2768,2773 'delet':1930,1934,1938,1979,2383,2387,2391,2422,2596,2599,2606,2795,2800,2804,3567,3571,3575,3586 'deleterecordingsidjson':2640 'deleterecordingtranscriptionsidjson':2839 'detail':3254 'detectionmod':272 'detectmessageend':282 'dial':1639,1644 'dialverb':834,956,2574 'direct':480,610 'disabl':281 'do-not-trim':358 'dtmf':2994,3096,3192,3307,3413,3511,3622 'dual':298 'durat':484,614,813,935,2557,2776 'dynam':2856 'e':75 'e.getmessage':80 'e.statuscode':79,82,94 'e29b':191,379,441,448,568,575,687,694,769,776,883,890,1009,1016,1100,1107,1114,1186,1193,1261,1268,1332,1385,1392,1491,1498,1596,1603,1668,1675,1752,1759,1857,1864,1960,1967,2006,2013,2084,2091,2154,2208,2265,2272,2337,2344,2407,2414,2452,2512,2623,2670,2735,2822 'e29b-41d4-a716':190,378,440,447,567,574,686,693,768,775,882,889,1008,1015,1099,1106,1113,1185,1192,1260,1267,1331,1384,1391,1490,1497,1595,1602,1667,1674,1751,1758,1856,1863,1959,1966,2005,2012,2083,2090,2153,2207,2264,2271,2336,2343,2406,2413,2451,2511,2622,2669,2734,2821 'east':327 'els':92 'enabl':280 'end':199,486,616,708,1340,1413,1427,1432,1443,1519,1533,1538,1549,1617,1704,1809,1914,2026,2104,2159,2457,2675 'endpoint':169,419 'enum':260,273,279,296,304,310,321,331,337,343,354,365,466,481,505,596,611,635,797,830,844,919,952,966,1050,1056,1143,1222,1304,1428,1454,1534,1560,1714,1819,1924,2541,2570,2584,2785,2936,2965,2996,3029,3044,3070,3098,3123,3135,3163,3194,3227,3242,3278,3309,3342,3357,3387,3415,3440,3452,3482,3513,3546,3561,3593,3624,3657,3672 'error':38,47,52,56,60,78,86,107,122,816,938,1041,1137,2560 'europ':323 'eventu':171,421 'exampl':28,385,547 'example-app-sid':384 'example.com':3151,3470 'exceed':1448,1554 'exist':3257,3371 'exit':1435,1541,1707,1812,1917 'exponenti':102,131 'f0':899,1277,2521,2632,2744,2831 'f0-aa62-74ac943d6c58':898,1276,2520,2631,2743,2830 'fail':44,512,642 'fallback':3039,3130,3237,3352,3447,3556,3667 'fallbackurl':276 'fetch':157,407,654,1359,2051,2239,2424,2483,2701 'field':89,124 'first':201,710,1342,1619,2028,2106,2161,2459,2677,3002,3006,3104,3108,3200,3204,3315,3319,3421,3425,3519,3523,3630,3634 'format':91,125,492,520,540,622,650 'found':119 'frankfurt':2984,3089,3182,3297,3406,3501,3612 'friend':1422,1528,3011,3061,3209,3324,3378,3528,3639 'friendlynam':3146,3465 'germani':2985,3090,3183,3298,3407,3502,3613 'get':173,261,305,338,366,423,668,1314,1367,1577,1720,1724,1728,1987,2065,2136,2247,2435,2493,2653,2715,2949,3030,3045,3124,3136,3228,3243,3260,3343,3358,3441,3453,3547,3562,3658,3673 'gradl':13 'handl':39,59 'hasnextpag':154 'hold':1709,1814,1919 'human':467,597 'id':2492,2605,2714,3014,3212,3262,3327,3376,3463,3531,3577,3642 'identifi':414,664,746,986,1074,2061,2489,2602,2711 'il':2968,3073,3166,3281,3390,3485,3596 'implement':14 'import':20,22,65,133,179,181,369,371,431,433,556,558,560,677,679,759,761,873,875,999,1001,1090,1092,1176,1178,1251,1253,1320,1322,1375,1377,1481,1483,1586,1588,1658,1660,1742,1744,1847,1849,1952,1996,1998,2074,2076,2142,2144,2196,2198,2255,2257,2327,2329,2399,2441,2443,2502,2504,2615,2659,2661,2725,2727,2814,2911,2913,2952,2954,3139,3141,3264,3266,3456,3458,3579,3581 'in-progress':507,637,1051,1144,1223,1456,1562,2585,2786 'inband':2999,3101,3197,3312,3418,3516,3627 'inbound':311,482,612,845,967,1059,3016,3113,3214,3329,3430,3533,3644 'individu':412 'info':3001,3103,3199,3314,3420,3518,3629 'init':1455,1561 'initi':34,218,222,332 'instal':8 'insuffici':114 'integ':200,210,213,215,284,286,288,290,308,350,352,709,719,722,731,1341,1351,1354,1356,1618,1628,1631,1636,2027,2037,2040,2048,2105,2115,2118,2127,2160,2170,2173,2178,2219,2222,2231,2291,2294,2303,2363,2366,2375,2458,2468,2471,2480,2676,2686,2689,2695,3010,3112,3208,3323,3429,3527,3638 'invalid':110 'item':148 'iter':145 'java':4,7,19,64,178,368,430,555,676,758,872,998,1089,1175,1250,1319,1374,1480,1585,1657,1741,1846,1951,1995,2073,2141,2195,2254,2326,2398,2440,2501,2614,2658,2724,2813,2910,2951,3138,3263,3455,3578 'jose':2972,3077,3170,3285,3394,3489,3600 'json':871,1088,1249,2500,2530,2613,2639,2723,2753,2812,2838 'jsondeleterecordingsidjsonparam':2617 'jsondeleterecordingsidjsonparams.builder':2619 'jsondeleterecordingtranscriptionsidjsonparam':2816 'jsondeleterecordingtranscriptionsidjsonparams.builder':2818 'jsonretrieverecordingsidjsonparam':2506 'jsonretrieverecordingsidjsonparams.builder':2508 'jsonretrieverecordingtranscriptionsidjsonparam':2729 'jsonretrieverecordingtranscriptionsidjsonparams.builder':2731 'jsonretrieverecordingtranscriptionsidjsonrespons':2748 'key':112,533 'label':1740,1845,1950 'last':1438,1544 'last-participant-left':1437,1543 'latenc':2966,3071,3164,3279,3388,3483,3594 'later':2852 'left':1436,1440,1542,1546 'legaci':1787,1798,1892,1903 'limit':49,97,128 'list':136,1308,1311,1571,1574,1981,1984,2130,2133,2151,2642,2938,2944,2959 'log':2904 'london':2978,3083,3176,3291,3400,3495,3606 'machin':468,598 'machinedetect':278 'machinedetectionsilencetimeout':283 'machinedetectionspeechendthreshold':285 'machinedetectionspeechthreshold':287 'machinedetectiontimeout':289 'manual':151 'max':2229,2301,2373 'media':1152,1158,2564 'method':137,3028,3043,3122,3134,3226,3241,3341,3356,3439,3451,3545,3560,3656,3671 'middl':326 'mission':242 'monitor':346 'mono':297 'multipl':158,162,2425,2429,2646 'must':538 'mustach':2862 'mute':1711,1816,1921 'name':472,602,1217,1423,1529,2878,2881,2908,2918,2921,2933,3012,3062,3210,3325,3379,3529,3640 'netherland':2977,3082,3175,3290,3399,3494,3605 'network':46 'new':1641,1646,2183,2187 'next':205,714,1346,1623,2032,2110,2165,2463,2681 'nextpag':156 'no-answ':514,644 'note':134,530 'null':815,819,822,826,937,941,944,948,2559,2563,2778 'object':198,271,729,1339,1462,1568,1634,2043,2046,2125,2176,2236,2308,2380,2478,2593,2698,3017,3019,3114,3116,3215,3217,3330,3332,3431,3433,3534,3536,3645,3647 'option':254,3065,3382 'outbound':220,224,312,483,613,846,968,1061,3018,3115,3216,3331,3432,3535,3646 'outboundapi':833,955,2573 'overrid':2964,3069,3162,3277,3386,3481,3592 'page':140,202,206,209,211,711,715,718,720,724,1343,1347,1350,1352,1620,1624,1627,1629,2029,2033,2036,2038,2107,2111,2114,2116,2120,2147,2162,2166,2169,2171,2460,2464,2467,2469,2473,2678,2682,2685,2687,2691,2957 'page.autopager':149 'pagin':135 'param':72,374,399,436,459,563,589,682,706,764,788,878,910,1004,1027,1095,1126,1181,1204,1256,1288,1380,1403,1486,1509,1591,1615,1663,1687,1747,1774,1852,1879,1955,1980,2001,2024,2079,2102,2260,2283,2332,2355,2402,2423,2507,2532,2618,2641,2730,2755,2817,2840,2916,2931,3144,3157,3461,3476 'paramet':743,983,2857 'particip':1430,1439,1536,1545,1573,1576,1613,1632,1643,1648,1685,1686,1722,1726,1739,1764,1768,1772,1828,1832,1844,1869,1873,1877,1933,1937,1949,1972,1978,2041 'participant-with-end-conference-on-exit-left':1429,1535 'participantdeleteparam':1954 'participantdeleteparams.builder':1956 'participantparticipantsparam':1662 'participantparticipantsparams.builder':1664 'participantparticipantsrespons':1680 'participantretrieveparam':1746 'participantretrieveparams.builder':1748 'participantretrieveparticipantsparam':1590 'participantretrieveparticipantsparams.builder':1592 'participantretrieveparticipantsrespons':1608 'participantretrieverespons':1767 'participantupdateparam':1851 'participantupdateparams.builder':1853 'participantupdaterespons':1872 'particular':859,1237 'patch':3374 'paus':2589 'payload':537 'perman':2799 'permiss':115 'pleas':529 'portal':244 'post':245,262,306,339,367,548,750,861,990,1078,1167,1239,1473,1649,1833,2190,2319,2905,3031,3046,3058,3125,3137,3229,3244,3344,3359,3442,3454,3548,3563,3659,3674 'preferredcodec':291 'premium':274 'present':534 'previous':723,2119,2472,2690 'price':494,496,624,626,820,823,942,945 'process':2891 'product':62 'progress':509,639,1053,1146,1225,1458,1564,2587,2788 'queue':2131,2134,2150,2174,2184,2188,2201,2204,2241,2245,2252,2278,2281,2313,2317,2324,2350,2353,2385,2389,2396,2421 'queuecreaterespons':2200 'queuedeleteparam':2401 'queuedeleteparams.builder':2403 'queuelistpag':2146 'queueretrieveparam':2259 'queueretrieveparams.builder':2261 'queueretrieverespons':2277 'queuesid':2269,2341,2411 'queueupdateparam':2331 'queueupdateparams.builder':2333 'queueupdaterespons':2349 'rate':48,96,127 'reason':1425,1531 'record':293,655,660,727,735,740,851,856,869,908,1983,1986,2044,2052,2057,2123,2426,2430,2476,2484,2487,2491,2498,2529,2597,2600,2604,2611,2638,2643,2647,2703,2708,2720,2779,2797,2802,2809,3020,3218,3333,3537,3648 'recordingchannel':295 'recordingrecordingsidjsonparam':877 'recordingrecordingsidjsonparams.builder':879 'recordingrecordingsidjsonrespons':903 'recordingsid':894,2516,2627 'recordingsidjson':909 'recordingsjson':704,786,787 'recordingsjsonrecordingsjsonparam':763 'recordingsjsonrecordingsjsonparams.builder':765 'recordingsjsonrecordingsjsonrespons':781 'recordingsjsonretrieverecordingsjsonparam':681 'recordingsjsonretrieverecordingsjsonparams.builder':683 'recordingsjsonretrieverecordingsjsonrespons':699 'recordingstatuscallback':299 'recordingstatuscallbackev':301 'recordingstatuscallbackmethod':303 'recordingtimeout':307 'recordingtrack':309 'recordingtranscriptionsid':2739,2826 'recordverb':836,958,2576 'redact':2937 'region':1449,1555 'regular':275 'replac':2884 'request':229,234,734,972 'requir':88,250,2907,3060,3377 'resourc':117,160,164,857,1235,1310,1313,1362,1366,1468,1472,1723,1727,2132,2135,2189,2242,2246,2314,2318,2386,2390,2427,2431,2485,2488,2598,2601,2649,2705,2710 'respons':184,394,700,782,904,1022,1120,1199,1282,1325,1609,1681,2019,2097,2446,2664,2749,2928 'result':69 'retri':100,129 'retriev':458,1402,1773,2282,3248,3252,3271 'retrievecal':188 'retrieveconfer':1329 'retrieveparticip':1614 'retrieverecord':2023 'retrieverecordingsidjson':2531 'retrieverecordingsjson':705,2101,2449 'retrieverecordingtranscriptionsidjson':2754 'retrievetranscriptionsjson':2667 'return':138,161,195,400,410,460,590,659,707,789,911,1028,1127,1205,1289,1336,1363,1404,1510,1616,1688,1775,1880,2025,2056,2103,2158,2212,2243,2284,2356,2428,2456,2486,2533,2645,2674,2706,2756,2932,2942,2960,3158,3273,3477,3588 'rfc':2997,3099,3195,3310,3416,3514,3625 'ring':333,506,636 'router':3149,3468 'san':2971,3076,3169,3284,3393,3488,3599 'sec':3009,3111,3207,3322,3428,3526,3637 'secret':2844,2848,2877,2888,2898,2920,2924,2930 'send':71 'sendrecordingurl':314 'session':974,980,1067,1073 'set':3368 'setup':18 'shown':36 'sid':176,248,387,426,429,462,499,551,554,592,629,667,671,674,749,753,756,791,794,801,827,864,867,870,913,916,923,949,989,993,996,1030,1033,1044,1077,1081,1084,1087,1129,1132,1140,1170,1173,1207,1210,1219,1242,1245,1248,1291,1294,1301,1317,1370,1373,1406,1412,1451,1476,1479,1512,1518,1557,1580,1583,1652,1655,1690,1693,1699,1702,1731,1734,1737,1777,1783,1786,1793,1797,1801,1836,1839,1842,1882,1888,1891,1898,1902,1906,1941,1944,1947,1990,1993,2064,2068,2071,2139,2193,2214,2232,2250,2253,2286,2304,2322,2325,2358,2376,2394,2397,2438,2496,2499,2535,2538,2545,2567,2609,2612,2656,2718,2722,2758,2764,2780,2782,2807,2811 'side':2896 'silenc':357 'sip':3000,3102,3198,3313,3419,3517,3628 'sipauthpassword':316 'sipauthusernam':318 'siprec':973,979,1066,1072,1076,1086,1124 'siprecjson':1026 'siprecsid':1111 'siprecsidjson':1125 'siprecsiprecsidjsonparam':1094 'siprecsiprecsidjsonparams.builder':1096 'siprecsiprecsidjsonrespons':1119 'sipregion':320 'size':212,721,1353,1630,2039,2117,2172,2221,2230,2293,2302,2365,2374,2470,2688 'skill' 'skill-telnyx-texml-java' 'sourc':829,951,2569 'source-team-telnyx' 'specif':1164 'specifi':544,742,982 'start':214,501,631,730,739,838,960,978,1046,1150,1156,1355,1635,2047,2126,2177,2479,2578,2694 'startcallrecordingapi':831,953,2571 'startconferencerecordingapi':832,954,2572 'status':403,504,634,1049,1142,1221,1303,1453,1559,1713,1818,1923,2583,2784,3023,3026,3117,3120,3221,3224,3336,3339,3434,3437,3540,3543,3651,3654 'statuscallback':328 'statuscallbackev':330 'statuscallbackmethod':336 'stop':1054,1147,1305,2590 'stream':1151,1157,1229,1234,1247,1286 'streamingsid':1272 'streamingsidjson':1287 'streamsjson':1203 'streamstreamingsidjsonparam':1255 'streamstreamingsidjsonparams.builder':1257 'streamstreamingsidjsonrespons':1281 'string':204,208,217,258,264,277,292,300,302,317,319,329,341,348,363,402,404,406,463,473,476,479,485,488,490,493,495,498,500,503,518,521,523,593,603,606,609,615,618,620,623,625,628,630,633,648,651,653,717,733,792,795,814,818,821,825,828,849,914,917,936,940,943,947,950,971,1031,1034,1037,1040,1043,1045,1048,1064,1130,1133,1136,1139,1141,1149,1208,1211,1218,1220,1227,1292,1295,1302,1307,1345,1349,1358,1407,1410,1415,1418,1421,1424,1450,1452,1464,1513,1516,1521,1524,1527,1530,1556,1558,1570,1622,1626,1638,1691,1694,1700,1719,1778,1781,1784,1788,1794,1799,1805,1808,1824,1883,1886,1889,1893,1899,1904,1910,1913,1929,2031,2035,2050,2113,2129,2164,2168,2180,2215,2225,2228,2233,2238,2287,2297,2300,2305,2310,2359,2369,2372,2377,2382,2466,2482,2536,2539,2558,2562,2568,2595,2684,2700,2759,2762,2765,2777,2781,2783,2792,2794,2934,2993,3013,3015,3022,3034,3037,3128,3191,3211,3213,3220,3232,3235,3306,3326,3328,3335,3347,3350,3445,3510,3530,3532,3539,3551,3554,3621,3641,3643,3650,3662,3665 'subresourc':1460,1566,2234,2306,2378,2591 'supervisecallsid':340 'supervisingrol':342 'sure':470,600 'sydney':2974,3079,3172,3287,3396,3491,3602 'system.err.println':76,84 'tag':3032,3126,3230,3345,3443,3549,3660 'telnyx':2,5,11,16,227,2895 'telnyx-texml-java':1 'telnyxcli':24 'telnyxokhttpclient.fromenv':26 'telnyxserviceexcept':74 'templat':2863 'texml':3,6,225,230,347,527,2843,2847,2859,2866,2869,2893,2940,2947,3052,3056,3250,3258,3365,3372,3569,3573 'texmlappl':3154,3269,3473,3584 'texmlapplicationcreateparam':3143 'texmlapplicationcreateparams.builder':3145 'texmlapplicationcreaterespons':3153 'texmlapplicationdeleterespons':3583 'texmlapplicationlistpag':2956 'texmlapplicationretrieverespons':3268 'texmlapplicationupdateparam':3460 'texmlapplicationupdateparams.builder':3462 'texmlapplicationupdaterespons':3472 'texmlgetcallrecordingresponsebodi':2525,2526 'texmlsecretsparam':2915 'texmlsecretsparams.builder':2917 'texmlsecretsrespons':2927 'text':9,2791 'thread.sleep':104 'time':487,502,617,632,807,812,839,842,929,934,961,964,1047,1216,1300,1447,1553,2218,2290,2362,2551,2556,2579,2582,2770,2775 'time-exceed':1446,1552 'timelimit':349 'timeout':351,3004,3008,3106,3110,3202,3206,3317,3321,3423,3427,3521,3525,3632,3636 'topic-agent-skills' 'topic-ai-coding-agent' 'topic-claude-code' 'topic-cpaas' 'topic-cursor' 'topic-iot' 'topic-llm' 'topic-sdk' 'topic-sip' 'topic-sms' 'topic-speech-to-text' 'topic-telephony' 'toronto':2980,3085,3178,3293,3402,3497,3608 'track':843,965,1055,1058,1060,1062 'transcript':2644,2648,2696,2704,2709,2721,2752,2790,2798,2803,2810,2837 'tri':67 'trim':353,356,361 'trim-sil':355 'trunk':837,959,2577 'type':2995,3021,3097,3193,3219,3308,3334,3414,3512,3538,3623,3649 'uk':2979,3084,3177,3292,3401,3496,3607 'unit':497,627,824,946 'updat':478,524,526,588,608,809,850,855,931,1039,1065,1071,1135,1213,1228,1233,1297,1420,1465,1469,1508,1526,1807,1825,1829,1878,1912,2227,2299,2311,2315,2354,2371,2553,2772,3035,3233,3348,3363,3367,3475,3552,3663 'updatecal':579 'updatecall.builder':580 'uri':203,207,216,522,652,712,713,716,725,726,732,848,970,1063,1148,1226,1306,1344,1348,1357,1461,1463,1567,1569,1621,1625,1637,1718,1823,1928,2030,2034,2049,2108,2109,2112,2121,2122,2128,2163,2167,2179,2235,2237,2307,2309,2379,2381,2461,2462,2465,2474,2475,2481,2566,2592,2594,2679,2680,2683,2692,2693,2699,2793,3025,3041,3049,3119,3132,3223,3239,3247,3338,3354,3362,3436,3449,3542,3558,3566,3653,3669,3677 'url':235,362,2565,3040,3048,3064,3131,3238,3246,3353,3361,3381,3448,3557,3565,3668,3676 'urlmethod':364 'us':322 'use':141,153,2853,2861,2875 'uuid':802,924,1703,1802,1907,2546 'va':2970,3075,3168,3283,3392,3487,3598 'valid':51,85,121 'valu':2889,2909,2922,2925,2935 'vancouv':2982,3087,3180,3295,3404,3499,3610 'var':68,147 'version':1409,1515,1780,1885,2761 'via':1444,1550 'visibl':2901 'voic':3038,3042,3047,3063,3129,3133,3236,3240,3245,3351,3355,3360,3380,3446,3450,3555,3559,3564,3666,3670,3675 'voiceurl':3150,3469 'wait':98,2217,2289,2361 'webhook':2989,3094,3187,3302,3411,3506,3617 'websocket':1165 'whisper':345 'xml':233","prices":[{"id":"a6d69148-a3f9-4fa7-80c3-c19ac403fb36","listingId":"905b09db-83b0-4432-b8cd-f52d3d978dcb","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:58.940Z"}],"sources":[{"listingId":"905b09db-83b0-4432-b8cd-f52d3d978dcb","source":"github","sourceId":"team-telnyx/ai/telnyx-texml-java","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-texml-java","isPrimary":false,"firstSeenAt":"2026-04-18T22:07:58.940Z","lastSeenAt":"2026-04-22T00:54:48.763Z"}],"details":{"listingId":"905b09db-83b0-4432-b8cd-f52d3d978dcb","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-texml-java","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":"3c32046fd0f5eb77773abe66928fab8886433a97","skill_md_path":"skills/telnyx-texml-java/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-texml-java"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-texml-java","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-texml-java"},"updatedAt":"2026-04-22T00:54:48.763Z"}}