Overview
To receive webhook events from our system, you must first register your webhook URL. This ensures that our platform knows where to send event notifications for the specified event type.Example Request
scribe
event type triggers a notification to your webhook at different stages of the scribing process, allowing your system to track progress and take action accordingly.
Webhook Triggers
Thescribe
webhook fires at the following stages:
- When a scribe request is created
- When the scribe process starts
- When the scribe process completes
status
field indicates the current stage of the process. The final webhook also includes the output JSON and HTML.
All webhook events have event_type: scribe
, ensuring clarity that they are related to the scribing process.
Example Webhook Payloads
- When a scribe request is created
- When the scribe process starts
- When the scribe process completes
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Webhook details that need to be registered.
The type of event this webhook is listening for.
Example:
"scribe"
The endpoint where webhook notifications will be sent.
Example:
"https://your-webhook-url.com/webhook-handler"
A secret token used to authenticate webhook requests.
Example:
"your-secret-token"