Webhooks
Receive real-time notifications when events occur in your workspace instead of polling the Jobs endpoint.
How it works
- Register a webhook URL from the Vidocu Dashboard
- Select which events to subscribe to
- Vidocu sends an HTTP POST to your URL when events fire
- Your server responds with a
2xxstatus to acknowledge delivery
Availability
Webhooks are available on the Business plan and above, alongside the rest of the REST API.
Delivery
Webhooks are delivered as POST requests with a JSON body:
{
"event": "video.analyzed",
"data": { ... },
"webhookId": "wh_abc123"
}