Webhook Visual Demo
One app sends an update to another app the moment something happens.
Click the button and watch the sender push an event to the receiver. That push is the webhook.
Store
The store creates an order. Instead of waiting for another app to ask about it, it immediately sends a webhook.
Webhook URL
https://inventory-app.example/webhook
- 1. An event happens in the sender app
- 2. The sender pushes JSON to the receiver URL
- 3. The receiver gets the data and reacts
Inventory App
The inventory app is not polling. It is just listening for incoming webhooks at its URL.
Received Event
No event received yet.
Waiting for webhook...