v50

latestOpenAPI 3.1.0MITraw.githubusercontent.com2026-06-16122182589.7 KB
Speech Analytics

Retranscribe a file

Re-runs transcription on the file identified by request_id, replacing the existing transcript.

put/v1/speech-analytics/{request_id}

Path parameters

request_idstring required
Example:e865ea07-25af-4fdd-876e-04b0d41d5ebd

The request_id of the transcription, returned when the file was uploaded.

Request body

callback_urlstring required

Callback URL for transcription status updates.

insightsboolean

Indicates whether to enable insights generation.

Example request

{
  "callback_url": "https://you-site.com/webhook",
  "insights": true
}

Response

Returns a success confirmation. Retranscription is queued.

successboolean required

Indicates whether the request was successful.

Example response

{
  "success": true
}