Glossary
Webhook and event-infrastructure terms, defined.
Short definitions for the vocabulary used across Hooksbase docs, guides, and posts — grouped by category. Each entry links to the related deep-dives.
Core
- HMAC
Hash-based Message Authentication Code — proves a message came from someone who knows a shared secret and was not modified.
Read - Payload
The body of an HTTP request — for webhooks, almost always JSON.
Read - Standard Webhooks
An open spec for webhook signing headers that several modern providers (and Hooksbase) follow.
Read - Webhook
An HTTP request one service sends to another to notify it that something happened.
Read
Reliability
- DLQ (Dead-Letter Queue)
A holding area for messages that failed terminally so they can be inspected and recovered.
Read - Exponential backoff
A retry schedule where each retry waits exponentially longer than the previous one.
Read - Idempotency
A property where performing an operation multiple times produces the same result as performing it once.
Read - Replay
Re-running a retained event with the same input — typically after fixing a bug that caused the original to fail.
Read - Retry
Re-attempting a failed delivery on a backoff schedule until it succeeds or hits a retry budget.
Read - Strict FIFO
Per-webhook ordering mode where the head delivery blocks subsequent ones until it succeeds or terminally fails.
Read
Architecture
Product
- Attempt
One HTTP request within a delivery's retry chain.
Read - Bulk replay (re-drive)
Replaying or DLQ-re-driving many deliveries from a selection in one operation.
Read - Default destination
Fallback destination for events no routing rule matches.
Read - Delivery
A single dispatch lifecycle to a destination — includes all retry attempts.
Read - Destination
A target URL or typed sink within a webhook; a webhook can have many.
Read - Dispatch snapshot
The transformed payload at the moment of dispatch, persisted so replays remain correct under config change.
Read - Event drain
A streamed feed of webhook lifecycle events to an external observability sink.
Read - Ingest
Accepting an event into Hooksbase via HTTP, email, form, or scheduled cron.
Read - Overage
Metered deliveries past the monthly included quota — paid tiers can opt in; free tier is hard-blocked.
Read - Payload transform
Per-webhook JSONPath extraction or Handlebars JSON template applied before dispatch.
Read - Provider pack
Preconfigured inbound verification for a known provider — Stripe, GitHub, Clerk, Slack, or Resend.
Read - Routing rule
A priority-ordered condition that selects which destination handles an event.
Read - Workflow blueprint
A dashboard-curated starting template for a first-workflow path.
Read