Webhooks
Every signup, confirmation, referral and reward can fire a webhook to your own endpoint, so your product, CRM or data warehouse stays in sync in real time.
Failed deliveries retry with exponential backoff, so a brief outage on your side does not lose events.
Inspect every attempt with the request body, response code and timing, and replay any event.
Pause an endpoint while you deploy, then resume without losing the events in between.
Verify that a request genuinely came from SMASHSEND before you act on it.
Subscribe only to what you need instead of handling every event type.
Pair webhooks with the contacts and forms endpoints to build a full two-way integration.
Form submissions, email confirmations, referral attributions and reward unlocks, alongside the contact and email events available elsewhere in SMASHSEND.
Delivery is retried with exponential backoff. Every attempt is logged, and you can replay an event manually once your endpoint is healthy again.
Each request is signed. Verify the signature against your endpoint secret before trusting the payload. The API docs show a worked example.
Start sending referral and signup events to your own systems today.
Read the docs