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: 'user@me.com',
  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. Also applies to transcripts which are shared with you.

{ 
  eventType: 'TRANSCRIPT_VERIFIED',
  transcriptId: '<TRINT_ID>',
  title: 'myFile.mp4',
  user: 'user@me.com',
  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.

TRANSCRIPT_NEW_VERSION (BETA)

Dispatched when there is a new transcript version. Also applies to transcripts which are shared with you. Available from 10 Feb 2025.

{ 
  eventType: 'TRANSCRIPT_NEW_VERSION',
  transcriptId: '<TRINT_ID>',
  title: 'myFile.mp4',
  user: 'user@me.com'
}
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