Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Build voice applications using TeXML markup language (TwiML-compatible). Manage applications, calls, conferences, recordings, queues, and streams. This skill provides Python SDK examples.
.claude/skills/team-telnyx-telnyx-texml-python/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 468% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 417% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 223% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 352% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 586% | 0% |
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
bashpip install telnyx
pythonimport os from telnyx import Telnyx client = Telnyx( api_key=os.environ.get("TELNYX_API_KEY"), # This is the default and can be omitted )
All examples below assume client is already initialized as shown above.
All API calls can fail with network errors, rate limits (429), validation errors (422), or authentication errors (401). Always handle errors in production code:
pythonimport telnyx try: result = client.messages.send(to="+13125550001", from_="+13125550002", text="Hello") except telnyx.APIConnectionError: print("Network error — check connectivity and retry") except telnyx.RateLimitError: # 429: rate limited — wait and retry with exponential backoff import time time.sleep(1) # Check Retry-After header for actual delay except telnyx.APIStatusError as e: print(f"API error {e.status_code}: {e.message}") if e.status_code == 422: print("Validation error — check required fields and formats")
Common error codes: 401 invalid API key, 403 insufficient permissions, 404 resource not found, 422 validation error (check field formats), 429 rate limited (retry with exponential backoff).
for item in page_result: to iterate through all pages automatically.Returns multiple call resources for an account. This endpoint is eventually consistent.
GET /texml/Accounts/{account_sid}/Calls
pythonresponse = client.texml.accounts.calls.retrieve_calls( account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.calls)
Returns: calls (arrayobject]), end (integer), first_page_uri (string), next_page_uri (string), page (integer), page_size (integer), start (integer), uri (string)
Initiate an outbound TeXML call. Telnyx will request TeXML from the XML Request URL configured for the connection in the Mission Control Portal.
POST /texml/Accounts/{account_sid}/Calls — Required: Url
Optional: Texml (object)
pythonresponse = client.texml.accounts.calls.calls( account_sid="550e8400-e29b-41d4-a716-446655440000", params={ "url": "https://www.example.com/texml.xml" }, ) print(response.from_)
Returns: from (string), status (string), to (string)
Returns an individual call identified by its CallSid. This endpoint is eventually consistent.
GET /texml/Accounts/{account_sid}/Calls/{call_sid}
pythoncall = client.texml.accounts.calls.retrieve( call_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(call.account_sid)
Returns: 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)
Update TeXML call. Please note that the keys present in the payload MUST BE formatted in CamelCase as specified in the example.
POST /texml/Accounts/{account_sid}/Calls/{call_sid}
pythoncall = client.texml.accounts.calls.update( call_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(call.account_sid)
Returns: 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)
Returns recordings for a call identified by call_sid.
GET /texml/Accounts/{account_sid}/Calls/{call_sid}/Recordings.json
pythonresponse = client.texml.accounts.calls.recordings_json.retrieve_recordings_json( call_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.end)
Returns: end (integer), first_page_uri (uri), next_page_uri (string), page (integer), page_size (integer), previous_page_uri (uri), recordings (arrayobject]), start (integer), uri (string)
Starts recording with specified parameters for call identified by call_sid.
POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Recordings.json
pythonresponse = client.texml.accounts.calls.recordings_json.recordings_json( call_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.account_sid)
Returns: 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)
Updates recording resource for particular call.
POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Recordings/{recording_sid}.json
pythonresponse = client.texml.accounts.calls.recordings.recording_sid_json( recording_sid="6a09cdc3-8948-47f0-aa62-74ac943d6c58", account_sid="550e8400-e29b-41d4-a716-446655440000", call_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.account_sid)
Returns: 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)
Starts siprec session with specified parameters for call identified by call_sid.
POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Siprec.json
pythonresponse = client.texml.accounts.calls.siprec_json( call_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.account_sid)
Returns: 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)
Updates siprec session identified by siprec_sid.
POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Siprec/{siprec_sid}.json
pythonresponse = client.texml.accounts.calls.siprec.siprec_sid_json( siprec_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", call_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.account_sid)
Returns: account_sid (string), call_sid (string), date_updated (string), error_code (string), sid (string), status (enum: in-progress, stopped), uri (string)
Starts streaming media from a call to a specific WebSocket address.
POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Streams.json
pythonresponse = client.texml.accounts.calls.streams_json( call_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.account_sid)
Returns: account_sid (string), call_sid (string), date_updated (date-time), name (string), sid (string), status (enum: in-progress), uri (string)
Updates streaming resource for particular call.
POST /texml/Accounts/{account_sid}/Calls/{call_sid}/Streams/{streaming_sid}.json
pythonresponse = client.texml.accounts.calls.streams.streaming_sid_json( streaming_sid="6a09cdc3-8948-47f0-aa62-74ac943d6c58", account_sid="550e8400-e29b-41d4-a716-446655440000", call_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.account_sid)
Returns: account_sid (string), call_sid (string), date_updated (date-time), sid (string), status (enum: stopped), uri (string)
Lists conference resources.
GET /texml/Accounts/{account_sid}/Conferences
pythonresponse = client.texml.accounts.conferences.retrieve_conferences( account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.conferences)
Returns: conferences (arrayobject]), end (integer), first_page_uri (string), next_page_uri (string), page (integer), page_size (integer), start (integer), uri (string)
Returns a conference resource.
GET /texml/Accounts/{account_sid}/Conferences/{conference_sid}
pythonconference = client.texml.accounts.conferences.retrieve( conference_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(conference.account_sid)
Returns: 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)
Updates a conference resource.
POST /texml/Accounts/{account_sid}/Conferences/{conference_sid}
pythonconference = client.texml.accounts.conferences.update( conference_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(conference.account_sid)
Returns: 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)
Lists conference participants
GET /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Participants
pythonresponse = client.texml.accounts.conferences.participants.retrieve_participants( conference_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.end)
Returns: end (integer), first_page_uri (string), next_page_uri (string), page (integer), page_size (integer), participants (arrayobject]), start (integer), uri (string)
Dials a new conference participant
POST /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Participants
pythonresponse = client.texml.accounts.conferences.participants.participants( conference_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.account_sid)
Returns: 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)
Gets conference participant resource
GET /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Participants/{call_sid_or_participant_label}
pythonparticipant = client.texml.accounts.conferences.participants.retrieve( call_sid_or_participant_label="participant-1", account_sid="550e8400-e29b-41d4-a716-446655440000", conference_sid="550e8400-e29b-41d4-a716-446655440000", ) print(participant.account_sid)
Returns: 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)
Updates a conference participant
POST /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Participants/{call_sid_or_participant_label}
pythonparticipant = client.texml.accounts.conferences.participants.update( call_sid_or_participant_label="participant-1", account_sid="550e8400-e29b-41d4-a716-446655440000", conference_sid="550e8400-e29b-41d4-a716-446655440000", ) print(participant.account_sid)
Returns: 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)
Deletes a conference participant
DELETE /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Participants/{call_sid_or_participant_label}
pythonclient.texml.accounts.conferences.participants.delete( call_sid_or_participant_label="participant-1", account_sid="550e8400-e29b-41d4-a716-446655440000", conference_sid="550e8400-e29b-41d4-a716-446655440000", )
Lists conference recordings
GET /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Recordings
pythonresponse = client.texml.accounts.conferences.retrieve_recordings( conference_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.end)
Returns: end (integer), first_page_uri (string), next_page_uri (string), page (integer), page_size (integer), participants (arrayobject]), recordings (arrayobject]), start (integer), uri (string)
Returns recordings for a conference identified by conference_sid.
GET /texml/Accounts/{account_sid}/Conferences/{conference_sid}/Recordings.json
pythonresponse = client.texml.accounts.conferences.retrieve_recordings_json( conference_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.end)
Returns: end (integer), first_page_uri (uri), next_page_uri (string), page (integer), page_size (integer), previous_page_uri (uri), recordings (arrayobject]), start (integer), uri (string)
Lists queue resources.
GET /texml/Accounts/{account_sid}/Queues
pythonpage = client.texml.accounts.queues.list( account_sid="550e8400-e29b-41d4-a716-446655440000", ) page = page.queues[0] print(page.account_sid)
Returns: end (integer), first_page_uri (string), next_page_uri (string), page (integer), page_size (integer), queues (arrayobject]), start (integer), uri (string)
Creates a new queue resource.
POST /texml/Accounts/{account_sid}/Queues
pythonqueue = client.texml.accounts.queues.create( account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(queue.account_sid)
Returns: 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)
Returns a queue resource.
GET /texml/Accounts/{account_sid}/Queues/{queue_sid}
pythonqueue = client.texml.accounts.queues.retrieve( queue_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(queue.account_sid)
Returns: 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)
Updates a queue resource.
POST /texml/Accounts/{account_sid}/Queues/{queue_sid}
pythonqueue = client.texml.accounts.queues.update( queue_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(queue.account_sid)
Returns: 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)
Delete a queue resource.
DELETE /texml/Accounts/{account_sid}/Queues/{queue_sid}
pythonclient.texml.accounts.queues.delete( queue_sid="550e8400-e29b-41d4-a716-446655440000", account_sid="550e8400-e29b-41d4-a716-446655440000", )
Returns multiple recording resources for an account.
GET /texml/Accounts/{account_sid}/Recordings.json
pythonresponse = client.texml.accounts.retrieve_recordings_json( account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.end)
Returns: end (integer), first_page_uri (uri), next_page_uri (string), page (integer), page_size (integer), previous_page_uri (uri), recordings (arrayobject]), start (integer), uri (string)
Returns recording resource identified by recording id.
GET /texml/Accounts/{account_sid}/Recordings/{recording_sid}.json
pythontexml_get_call_recording_response_body = client.texml.accounts.recordings.json.retrieve_recording_sid_json( recording_sid="6a09cdc3-8948-47f0-aa62-74ac943d6c58", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(texml_get_call_recording_response_body.account_sid)
Returns: 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)
Deletes recording resource identified by recording id.
DELETE /texml/Accounts/{account_sid}/Recordings/{recording_sid}.json
pythonclient.texml.accounts.recordings.json.delete_recording_sid_json( recording_sid="6a09cdc3-8948-47f0-aa62-74ac943d6c58", account_sid="550e8400-e29b-41d4-a716-446655440000", )
Returns multiple recording transcription resources for an account.
GET /texml/Accounts/{account_sid}/Transcriptions.json
pythonresponse = client.texml.accounts.retrieve_transcriptions_json( account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.end)
Returns: end (integer), first_page_uri (uri), next_page_uri (string), page (integer), page_size (integer), previous_page_uri (uri), start (integer), transcriptions (arrayobject]), uri (string)
Returns the recording transcription resource identified by its ID.
GET /texml/Accounts/{account_sid}/Transcriptions/{recording_transcription_sid}.json
pythonresponse = client.texml.accounts.transcriptions.json.retrieve_recording_transcription_sid_json( recording_transcription_sid="6a09cdc3-8948-47f0-aa62-74ac943d6c58", account_sid="550e8400-e29b-41d4-a716-446655440000", ) print(response.account_sid)
Returns: 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)
Permanently deletes a recording transcription.
DELETE /texml/Accounts/{account_sid}/Transcriptions/{recording_transcription_sid}.json
pythonclient.texml.accounts.transcriptions.json.delete_recording_transcription_sid_json( recording_transcription_sid="6a09cdc3-8948-47f0-aa62-74ac943d6c58", account_sid="550e8400-e29b-41d4-a716-446655440000", )
Initiate an outbound AI call with warm-up support. Validates parameters, builds an internal TeXML with an AI Assistant configuration, encodes instructions into client state, and calls the dial API. The Twiml, Texml, and Url parameters are not allowed and will result in a 422 error.
POST /texml/ai_calls/{connection_id} — Required: From, To, AIAssistantId
Optional: AIAssistantDynamicVariables (object), AIAssistantVersion (string), AsyncAmd (boolean), AsyncAmdStatusCallback (string), AsyncAmdStatusCallbackMethod (enum: GET, POST), CallerId (string), ConversationCallback (string), ConversationCallbackMethod (enum: GET, POST), ConversationCallbacks (arraystring]), CustomHeaders (arrayobject]), DetectionMode (enum: Premium, Regular, PremiumCallScreening), MachineDetection (enum: Enable, Disable, DetectMessageEnd), MachineDetectionPromptEndTimeout (integer), MachineDetectionSilenceTimeout (integer), MachineDetectionSpeechEndThreshold (integer), MachineDetectionSpeechThreshold (integer), MachineDetectionTimeout (integer), Passports (string), 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 (string), StatusCallbackMethod (enum: GET, POST), StatusCallbacks (arraystring]), TimeLimit (integer), Timeout (integer), Trim (enum: trim-silence, do-not-trim)
pythonresponse = client.texml.initiate_ai_call( connection_id="550e8400-e29b-41d4-a716-446655440000", ai_assistant_id="ai-assistant-id-123", from_="+13120001234", to="+13121230000", ) print(response.call_sid)
Returns: call_sid (string), from (string), status (string), to (string)
Create 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.
POST /texml/secrets — Required: name, value
pythonresponse = client.texml.secrets( name="My Secret Name", value="My Secret Value", ) print(response.data)
Returns: name (string), value (enum: REDACTED)
Returns a list of your TeXML Applications.
GET /texml_applications
pythonpage = client.texml_applications.list() page = page.data[0] print(page.id)
Returns: 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 (arraystring]), updated_at (string), voice_fallback_url (uri), voice_method (enum: get, post), voice_url (uri)
Creates a TeXML Application.
POST /texml_applications — Required: friendly_name, voice_url
Optional: 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 (arraystring]), voice_fallback_url (uri), voice_method (enum: get, post)
pythontexml_application = client.texml_applications.create( friendly_name="call-router", voice_url="https://example.com", ) print(texml_application.data)
Returns: 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 (arraystring]), updated_at (string), voice_fallback_url (uri), voice_method (enum: get, post), voice_url (uri)
Retrieves the details of an existing TeXML Application.
GET /texml_applications/{id}
pythontexml_application = client.texml_applications.retrieve( "1293384261075731499", ) print(texml_application.data)
Returns: 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 (arraystring]), updated_at (string), voice_fallback_url (uri), voice_method (enum: get, post), voice_url (uri)
Updates settings of an existing TeXML Application.
PATCH /texml_applications/{id} — Required: friendly_name, voice_url
Optional: 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 (arraystring]), voice_fallback_url (uri), voice_method (enum: get, post)
pythontexml_application = client.texml_applications.update( id="1293384261075731499", friendly_name="call-router", voice_url="https://example.com", ) print(texml_application.data)
Returns: 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 (arraystring]), updated_at (string), voice_fallback_url (uri), voice_method (enum: get, post), voice_url (uri)
Deletes a TeXML Application.
DELETE /texml_applications/{id}
pythontexml_application = client.texml_applications.delete( "1293384261075731499", ) print(texml_application.data)
Returns: 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 (arraystring]), updated_at (string), voice_fallback_url (uri), voice_method (enum: get, post), voice_url (uri)
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 14,488 | 34,699 | +140% | 1 | 1 | 0% | 2,203 | 12,513 | +468% | 0 | 0 | — |
case-02 | fail→pass | 12,474 | 7,879 | -37% | 1 | 1 | 0% | 2,400 | 12,417 | +417% | 0 | 0 | — |
case-03 | fail→pass | 17,885 | 9,725 | -46% | 1 | 1 | 0% | 4,004 | 12,931 | +223% | 0 | 0 | — |
case-04 | fail→pass | 13,209 | 6,161 | -53% | 1 | 1 | 0% | 2,664 | 12,038 | +352% | 0 | 0 | — |
case-05 | fail→pass | 8,691 | 5,266 | -39% | 1 | 1 | 0% | 1,721 | 11,802 | +586% | 0 | 0 | — |
case-06 | pass→pass | 7,140 | 5,468 | -23% | 1 | 1 | 0% | 1,400 | 11,982 | +756% | 0 | 0 | — |
case-07 | fail→pass | 14,947 | 10,875 | -27% | 1 | 1 | 0% | 3,082 | 11,665 | +278% | 0 | 0 | — |
case-08 | fail→pass | 12,503 | 6,100 | -51% | 1 | 1 | 0% | 2,685 | 12,204 | +355% | 0 | 0 | — |
case-09 | fail→pass | 14,796 | 5,054 | -66% | 1 | 1 | 0% | 2,121 | 11,908 | +461% | 0 | 0 | — |
case-10 | fail→pass | 41,644 | 5,405 | -87% | 1 | 1 | 0% | 2,430 | 12,086 | +397% | 0 | 0 | — |
case-11 | fail→pass | 13,543 | 4,689 | -65% | 1 | 1 | 0% | 2,712 | 11,764 | +334% | 0 | 0 | — |
case-12 | fail→pass | 5,694 | 5,903 | +4% | 1 | 1 | 0% | 1,184 | 12,108 | +923% | 0 | 0 | — |
case-13 | fail→pass | 7,626 | 34,994 | +359% | 1 | 1 | 0% | 1,442 | 11,770 | +716% | 0 | 0 | — |
case-14 | fail→pass | 16,368 | 4,535 | -72% | 1 | 1 | 0% | 3,320 | 11,667 | +251% | 0 | 0 | — |
case-15 | fail→pass | 5,961 | 5,404 | -9% | 1 | 1 | 0% | 1,121 | 11,944 | +965% | 0 | 0 | — |
case-16 | fail→pass | 8,236 | 5,142 | -38% | 1 | 1 | 0% | 1,472 | 11,724 | +696% | 0 | 0 | — |
case-17 | fail→pass | 13,241 | 4,256 | -68% | 1 | 1 | 0% | 2,509 | 11,654 | +364% | 0 | 0 | — |
case-18 | fail→pass | 7,755 | 6,012 | -22% | 1 | 1 | 0% | 1,494 | 12,029 | +705% | 0 | 0 | — |
case-19 | fail→pass | 8,165 | 4,852 | -41% | 1 | 1 | 0% | 1,649 | 11,741 | +612% | 0 | 0 | — |
case-20 | fail→pass | 9,751 | 6,403 | -34% | 1 | 1 | 0% | 1,601 | 11,952 | +647% | 0 | 0 | — |
case-21 | fail→pass | 7,232 | 4,222 | -42% | 1 | 1 | 0% | 1,441 | 11,626 | +707% | 0 | 0 | — |
case-22 | fail→pass | 15,485 | 5,404 | -65% | 1 | 1 | 0% | 2,811 | 11,889 | +323% | 0 | 0 | — |
case-23 | fail→pass | 9,027 | 4,414 | -51% | 1 | 1 | 0% | 1,705 | 11,499 | +574% | 0 | 0 | — |
case-24 | fail→pass | 10,594 | 5,592 | -47% | 1 | 1 | 0% | 2,106 | 11,878 | +464% | 0 | 0 | — |
case-25 | fail→pass | 10,528 | 5,470 | -48% | 1 | 1 | 0% | 1,991 | 11,935 | +499% | 0 | 0 | — |
case-26 | pass→pass | 7,421 | 7,073 | -5% | 1 | 1 | 0% | 1,508 | 12,171 | +707% | 0 | 0 | — |
case-27 | fail→pass | 4,552 | 4,487 | -1% | 1 | 1 | 0% | 911 | 11,700 | +1184% | 0 | 0 | — |
case-28 | pass→pass | 15,323 | 17,545 | +15% | 1 | 1 | 0% | 3,013 | 14,653 | +386% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 28 cases were attempted. The headline lift of +89 percentage points is the difference between those two pass rates over the 28 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.