v50

latestOpenAPI 3.1.0MITraw.githubusercontent.com2026-06-16122182589.7 KB
CDRs

Transcribe a call recording

Transcribes the recording of the call identified by call_id. Transcription is asynchronous; poll the transcription endpoint for the result.

put/v1/cdrs/{call_id}/retranscribe

Path parameters

call_idstring required
Example:bbaa37bf-430a-46da-ade3-c248e407016

The unique ID of the call.

Request body

language'en' | 'de' | 'es' | 'fr' | 'it' | 'null' nullable

Language of the transcription, as a two-letter ISO 639-1 code. One of en (English), de (German), es (Spanish), fr (French), or it (Italian). null lets the platform auto-detect the language.

webhook_urlstring

Webhook URL to receive status updates.

Example request

{
  "webhook_url": "https://site.webhook"
}

Response

Returns a success confirmation. Transcription is queued.

successboolean required

Indicates whether the request was successful.

Example response

{
  "success": true
}