Webhooks
Listen for events happening in your store and trigger external actions automatically.
What are Webhooks?
Instead of constantly polling our API to check for new orders, Webhooks let Joomni notify your server instantly when something happens.
Supported Events
order.created
Fired when a customer completes checkout. Useful for sending order data to accounting software.
inventory.low
Fired when a product variant hits the low stock threshold.
customer.created
Fired when a new customer registers. Great for syncing with CRM tools.
Configuration
- Go to Settings > Webhooks.
- Click Add Endpoint.
- Enter your Callback URL (e.g., `https://yourapp.com/webhooks/joomni`).
- Select the Events you want to listen to.
- Copy the Signing Secret to verify request authenticity on your server.
Security
Joomni signs every webhook payload with an HMAC-SHA256 signature. You should verify this signature to ensure the request actually came from us.