get https://api.heygen.com/v2/video_translate/proofread/status/
Checks the current status of a proofread request using the provided proofread ID.
Response
Field | Type | Description |
---|---|---|
proofread_id | str | ID of the proofread. |
status | str | Proofread status, one of - processing (The video is processing)- completed (The proofread generation is completed) |
details | str | Details of the proofread status |
submitted_for_review | boolean | Defaults to false |
{
"error": null,
"data": {
"proofread_id": "6070191e6cbf438494ef6a642f2483a6",
"status": "processing",
"details": null,
"submitted_for_review": false
}
}
{
"error": null,
"data": {
"proofread_id": "6070191e6cbf438494ef6a642f2483a6",
"status": "completed",
"details": null,
"submitted_for_review": false
}
}