Receiving webhook notifications

If you provide us with a webook URL we will notify you of events that happen in our system. These will be sent as HTTP POST requests to the endpoint you provide.

Setting a Webhook URL

Your webhook URL can be set from the API page of your Trint account.

Event Types

TRANSCRIPT_COMPLETE

The TRANSCRIPT_COMPLETE event is triggered when your media has been uploaded and successfully transcribed. It is now ready for you to polish it to perfection. One example use case for this event is sending a message to the user.

Payload

The metadata property will only be present if the media was uploaded using the Upload API and a value was presented for the metadata at that time. The value is returned to you verbatim.

{ 
  "eventType": "TRANSCRIPT_COMPLETE",
  "transcriptId": "<TRINT_ID>",
  "title": "myFile.mp4",
  "user": "[email protected]",
  "metadata": "<UPLOAD_METADATA>"
}

TRANSCRIPT_VERIFIED

The TRANSCRIPT_VERIFIED event is triggered when your transcript has been completely reviewed. You could use this event to automate the export of your transcript using the Export API.

Payload

The metadata property will only be present if the media was uploaded using the Upload API and a value was presented for the metadata at that time. The value is returned to you verbatim.

{ 
  "eventType": "TRANSCRIPT_VERIFIED",
  "transcriptId": "<TRINT_ID>",
  "title": "myFile.mp4",
  "user": "[email protected]",
  "metadata": "<UPLOAD_METADATA>"
}