Skip to main content
PUT
/
cdr
/
{cdr_uuid}
/
retranscribe
Transcribe a single call
curl --request PUT \
  --url https://api.wavix.com/v1/cdr/{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

cdr_uuid
string
required

Unique identifier of a call

Example:

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

Body

application/json

Transcribe a call request

Transcribe a call request

language
enum<string> | null

Transcription language

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

Webhook URL to send status update to

Example:

"https://site.webhook"

Response

Indicates successful request

success
boolean
required
Example:

true