Adding an endpoint
Click Add webhook endpoint and give it:- URL — where to send events. It must be reachable from your Spree server over HTTPS.
- Subscriptions — which events to send. Pick individual events such as
order.placed, or a whole family with a wildcard such asorder.*for everything about orders.
Testing
Use Send test to fire a sample event at the endpoint straight away. It shows up in the delivery log like any other, so you can confirm the receiver is wired up before real orders depend on it.The delivery log
Every attempt is recorded. View deliveries on an endpoint lists them with the event, the response code your system returned and how long it took. Open a delivery to see the exact payload that was sent and the response body that came back — the first place to look when a receiver misbehaves.
A failed delivery is retried automatically, up to five times with increasing gaps between attempts, which rides out a brief outage on your side. After that it stays failed; Redeliver sends it again by hand once the receiver is fixed.
Disabling an endpoint
Disable stops deliveries without deleting the endpoint or its history — useful while a receiver is being rebuilt. Re-enable when it is back. Deleting an endpoint removes its delivery history too.Related
- API Keys — the other direction: your systems calling your store
- Webhooks for developers — payload format, signature verification and the full event list

