Skip to main content
PATCH
/
v3
/
video-translations
/
{video_translation_id}
Update Video Translation
curl --request PATCH \
  --url https://api.heygen.com/v3/video-translations/{video_translation_id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "title": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "title": "<string>",
    "output_language": "<string>",
    "input_language": "<string>",
    "duration": 123,
    "translate_audio_only": true,
    "video_url": "<string>",
    "audio_url": "<string>",
    "srt_caption_url": "<string>",
    "vtt_caption_url": "<string>",
    "callback_id": "<string>",
    "created_at": 123,
    "failure_message": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://heygen-1fa696a7.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

HeyGen API key. Obtain from your HeyGen dashboard.

Path Parameters

video_translation_id
string
required

Unique video translation identifier

Body

application/json

Request body for PATCH /v3/video-translations/{id}.

title
string
required

New title for the video translation

Response

Successful response

data
VideoTranslationDetail · object

Detailed video translation resource.