Docs
Webhooks
Receive and act on events from Stripe, GitHub, or anything with a POST.
Webhook receivers are the fastest way to feel QuikRun. Describe the handler, review the draft, and paste the URL into the sender.
a webhook that posts failed Stripe charges to #payments in Slack
Dedupe retries
QuikRun dedupes retried deliveries by event id so your handler stays idempotent.
if (seen.has(event.id)) return { ok: true, dup: true };seen.add(event.id);