Want to receive real-time updates when your documents are processed? Use webhooks to automatically notify your system when a file is complete.
Go to Settings > API Integration
Under Generate Webhook Secret Key, click Generate secret key
This key is used to sign and validate incoming webhook notifications
Keep your key secure. If you regenerate it, make sure to update it in your webhook handling system.
To start receiving document completion events, use the Webhooks section in Settings > API Documentation.
POST /v1/admin/company/webhooks
Body example:
The url must be a secure HTTPS endpoint that can accept POST requests.
The event should be "file_processed" (for now, this is the available event).
GET /v1/admin/company/webhooks
Returns the list of webhooks already configured in your company account.
DELETE /v1/admin/company/webhooks/{id}
Use this endpoint to remove a webhook using its ID.
Once your webhook is registered, you’ll receive a POST request when a document’s processing is complete.
Example response:
Make sure your endpoint can handle and verify the request using your Webhook Secret Key.