Skip to main content
PUT
/
v1
/
cdr
/
{uuid}
/
retranscribe
Transcribe call recording
curl --request PUT \
  --url https://api.wavix.com/v1/cdr/{uuid}/retranscribe \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "language": "en",
  "webhook_url": "https://site.webhook"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer token using appid (Authorization: Bearer )

Path Parameters

uuid
string
required

Call ID.

Example:

"bbaa37bf-430a-46da-ade3-c248e407016"

Body

application/json

Transcription request parameters.

language
enum<string> | null

Language.

Available options:
en,
de,
es,
fr,
it,
null
webhook_url
string

Webhook URL to receive status updates.

Example:

"https://site.webhook"

Response

Transcription request submitted.

success
boolean
required

Indicates whether the request was successful.

Example:

true