Setting up endpoints
- Go to the Webhook section in your store’s dashboard.
- Add an endpoint URL (e.g.
https://example.com/webhooks/zenobank). - Select the event types you want to receive.
Events
Payload format
- checkout.completed
- checkout.expired
- checkout.partially_paid
The customer paid the full amount.
paidAmount is equal to or greater than priceAmount.Verifying webhooks
Every webhook request includes three headers used for signature verification:
Use the official Svix library to verify signatures. To find your signing secret, go to Developers, click on a webhook endpoint, and copy the Signing Secret on the right side. It starts with
whsec_.
Install the Svix library
- JavaScript
- Python
- PHP
- Go
- Ruby
bash pnpm add svix Verify the signature
- JavaScript
- Python
- PHP
- Go
- Ruby
FAQ
What is the retry schedule?
What is the retry schedule?
If Zeno Bank does not receive a
2xx response from your webhook endpoint, we will retry the delivery.Each message is attempted based on the following schedule, where each period starts after the failure of the preceding attempt:- 5 seconds
- 5 minutes
- 30 minutes
- 2 hours
- 5 hours
- 10 hours
2xx status code to acknowledge the event. You can monitor delivery attempts and manually retry from the Developers section in the dashboard.What are the delivery guarantees?
What are the delivery guarantees?
Zeno Bank webhooks provide at-least-once delivery. Every event will be delivered to your endpoint at least once, but may be delivered more than once in rare cases (such as network timeouts where your server processed the event but the acknowledgement was lost).To handle duplicates, use the
svix-id header included with every webhook request. This is a unique identifier for each event delivery. Store processed svix-id values and skip any duplicates.Can I retry webhook events manually?
Can I retry webhook events manually?
Yes. Go to Developers in the
dashboard, click on your webhook endpoint, find the event you want to retry,
and click the replay button to resend it.
Do I need to set up webhooks if I use a plugin?
Do I need to set up webhooks if I use a plugin?
No. If you use one of our official plugins (WooCommerce, PrestaShop, WHMCS, etc.), webhooks are configured automatically. You don’t need to set up endpoints or verify signatures manually.

