Getting Started
Last updated
Last updated
Webhooks allow your applications to receive information when customers submit, update or delete product reviews. This enables seamless integration with your existing tools - whether you want to track reviews in your CRM, send data to custom analytics platforms or trigger custom workflows. This documentation will detail how to configure and test webhooks for Okendo.
You can configure webhooks using the . Follow the API documentation to create a webhook subscription.
Important Notes:
Webhook Ordering: Delivery order is not guaranteed. However, each webhook includes a sequenceNumber
that can be used to order events for the same resource type.
Response Requirements: Your server must respond with an HTTP 2xx
status code (e.g., 200 OK
) within 15 seconds of receiving a webhook event.
Best practice is to immediately acknowledge receipt and delegate processing to an asynchronous task or queue.
For security purposes, we strongly recommend verifying the webhook signature to ensure that the payloads are coming from Okendo and not a malicious third party.
Refer to for an example of how to verify webhook signatures using the Svix CLI.