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

  1. Go to Settings > Webhooks.
  2. Click Add Endpoint.
  3. Enter your Callback URL (e.g., `https://yourapp.com/webhooks/joomni`).
  4. Select the Events you want to listen to.
  5. 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.

Ask AI