Vibefollow can push events back to your backend over HTTPS — one delivery per email open, click, bounce, reply, and unsubscribe. You receive them at an endpoint you control, verify the signature, and react however you like (update your CRM, kick off a workflow, alert on negative replies).Documentation Index
Fetch the complete documentation index at: https://docs.vibefollow.com/llms.txt
Use this file to discover all available pages before exploring further.
Lifecycle of a delivery
A receivable event happens
Postmark reports an open back to Vibefollow, an inbound reply comes through, or a user clicks the one-click unsubscribe link.
Vibefollow signs the payload
Body bytes are HMAC-SHA256’d with your project’s webhook secret; the timestamp goes in the header.
Setting up an endpoint
Expose an HTTPS endpoint
Accept
POST with JSON bodies. Make sure your framework can hand you the raw request body, not a parsed object.Register the URL
In Settings → Developers → Webhooks (coming soon), add the URL and generate a signing secret. Store the secret as
VIBEFOLLOW_WEBHOOK_SECRET.Verify every delivery
Use the SDK — see Signature verification.
Retry policy
Failed deliveries (non-2xx, timeout, connection error) retry with exponential backoff and jitter. The schedule, all in real time:| Attempt | Delay since previous |
|---|---|
| 1 | initial |
| 2 | 30 seconds |
| 3 | 2 minutes |
| 4 | 10 minutes |
| 5 | 30 minutes |
| 6 | 2 hours |
| 7 | 6 hours |
| 8 | 12 hours |
Why the raw body
What events you can receive
email.opened
Recipient opened a tracked email.
email.clicked
Recipient clicked a link in a tracked email.
email.bounced
Postmark reported a bounce or spam complaint.
email.replied
Inbound reply parsed and tone-classified.
email.unsubscribed
One-click unsubscribe, reply-request, or manual.
Event types reference
Full payload spec for each event type.