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?appid=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "language": "en",
  "webhook_url": "https://site.webhook"
}
'
{
  "success": true
}

Authorizations

appid
string
query
required

An API key to authorize your request

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