Events that can be dispatched by Trint to your own endpoint.
TRANSCRIPT_COMPLETE
Dispatched when an upload file finishes transcribing.
{
eventType: 'TRANSCRIPT_COMPLETE',
transcriptId: '<TRINT_ID>',
title: 'myFile.mp4',
user: '[email protected]',
metadata: 'some opaque metadata string'
}
Key name | Type | Description |
---|---|---|
eventType | String | Event type of the callback |
transcriptId | String | The ID of the Trint that has completed transcribing |
title | String | Title of the Trint |
user | String | Username of the user attached to the Trint |
metadata | String | If metadata was supplied at the time of upload then it will be reflected back here. |
TRANSCRIPT_VERIFIED
Dispatched when a transcript has been fully verified in the editor.
{
eventType: 'TRANSCRIPT_VERIFIED',
transcriptId: '<TRINT_ID>',
title: 'myFile.mp4',
user: '[email protected]',
metadata: 'some opaque metadata string'
}
Key name | Type | Description |
---|---|---|
eventType | String | Event type of the callback |
transcriptId | String | The ID of the Trint that has been fully verified |
title | String | Title of the Trint |
user | String | Username of the user attached to the Trint |
metadata | String | If metadata was supplied at the time of upload then it will be reflected back here. |