Transcription
Before you start
To receive these events, you need to have a webhook event receiver preconfigured. You also need to understand the basic structure of the events accompanying the message
object. If you haven't done this yet, please refer to the Webhooks section to learn how to do it.
Events
TRANSCRIPTION
This event is triggered when a transcription has been successfully generated and is ready for use.
Description of message
object
The object message
contains information about the transcription status. It has the following properties:
Property | Type | Description |
---|---|---|
id | string | Unique identifier for the transcription. |
status | string | Current status of the transcription (e.g. 'done'). |
Payload example
The following is an example of the payload sent when a transcription is completed:
{
"id": "b0a811d7-9640-42ef-8ad3-e84187547076",
"type": "TRANSCRIPTION",
"apiKey": "ab12cd34ef56gh78ij90kl12mn34op56",
"environment": "production",
"timestamp": "2024-03-15T14:30:22.789Z",
"message": {
"id": "b0a811d7-9640-42ef-8ad3-e84187547076",
"status": "done"
}
}