Use this method to submit a specific call recording for transcription. Depending on the length of the call and the number of other recordings in the queue, it may take different time for the transcription to be completed. Typically, the majority of calls are transcribed within 10 minutes. To receive an update once the transcription is completed, you can specify a webhook address in the webhook_url
parameter to which the status update will be sent.
The method returns an empty response with the “HTTP 200 OK” status code. Once the transcription is completed you’ll receive a POST callback to the provided webhook address:
{
"uuid": "123",
"status": "completed"
}
completed
meaning the recorded call was successfully transcribed or failed
which means that there was an error while transcribing the call.This endpoint requires authentication.
PUT /cdr/{uuid}/retranscribe
Void
curl -X PUT \
--url 'https://api.wavix.com/v1/cdr/12542c5c-1a17-4d12-a163-5b68543e75f6/retranscribe?appid=appid' \
-H 'Content-Type: application/json' \
--data-raw '{
"language": "en",
"webhook_url": "https://site.webhook"
}'