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 nameTypeDescription
eventTypeStringEvent type of the callback
transcriptIdStringThe ID of the Trint that has completed transcribing
titleStringTitle of the Trint
userStringUsername of the user attached to the Trint
metadataStringIf 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 nameTypeDescription
eventTypeStringEvent type of the callback
transcriptIdStringThe ID of the Trint that has been fully verified
titleStringTitle of the Trint
userStringUsername of the user attached to the Trint
metadataStringIf metadata was supplied at the time of upload then it will be reflected back here.