Real-time event notifications for VKRA integrations
Webhooks allow your system to receive real-time notifications when important events occur in your VKRA account, such as clicks or conversions.
You can subscribe to the following events:
| Event | Description |
|---|---|
click | Triggered when a user clicks on a product recommendation. |
conversion | Triggered when a click results in a successful purchase. |
search | Triggered when a new contextual search is performed. |
feedback | Triggered when relevance feedback is submitted. |
POST /webhooks
{
"url": "https://your-app.com/webhooks/adtokens",
"events": ["click", "conversion"]
}VKRA sends webhooks as POST requests with a JSON payload.
click event){
"id": "evt_123",
"type": "click",
"created_at": "2024-01-15T10:30:00Z",
"data": {
"impression_id": "imp_abc456",
"product_id": "product_789",
"request_id": "req_550e..."
}
}We recommend verifying the webhook signature to ensure that the request originated from VKRA.
(Note: Signature verification details will be provided as we roll out the enterprise webhook suite in Q1 2026.)