How delivery works
When a subscribed event occurs, Way sends an HTTPPOST to your configured URL:
eventidentifies the event type;payload’s shape depends on it - see the event catalog.- If you configured a secret, the request carries an
X-Way-Signatureheader you should verify - see Verify signatures. - Your endpoint has 10 seconds to respond with a
2xx. Failures are retried - see Delivery and retries. - Webhooks are managed in the Way dashboard, not through the API - see Setup.
Events
A typical integration
- Set up a webhook in the dashboard pointing at your endpoint, with a secret.
- Verify the signature on every delivery, respond
200fast, and process asynchronously. - Use
booking.*events to keep your systems in sync, fetching full records via the Bookings API when you need more than the payload carries. - Test locally by triggering real events on staging.