GLOSSARY logo

GLOSSARY

THE TECHNICAL LANGUAGE OF DIGITAL B2B INFRASTRUCTURE

CONCEPT
SYSTEMS ARCHITECTURE

Webhook

An event-triggered HTTP request sent by one system to a registered endpoint in another system to notify it that something has happened.


BUSINESS RELEVANCE

Webhooks reduce latency and unnecessary API requests in connected workflows. They are commonly used to trigger fulfilment, synchronise records, start automation, and notify downstream services.


IMPLEMENTATION EXAMPLE

A payment platform sends a signed webhook after a successful payment. The receiving service verifies the signature, checks the event ID for duplicates, updates the order, and queues fulfilment.


LIMITATIONS

Webhook delivery is generally not equivalent to exactly-once processing. Requests can be duplicated, delayed, reordered, or lost after retry limits. Public endpoints also create an attack surface and must not trust payloads without verification.


TECHNICAL EXPLANATION

The producer sends a payload—commonly JSON—to a subscriber endpoint when a defined event occurs. Production implementations require event identifiers, authentication or signatures, timeouts, retries, idempotent processing, ordering assumptions, observability, and a strategy for dead-letter or failed deliveries. Webhooks enable push-based integration rather than repeated polling.


Secondary Topics

Cybersecurity, Intelligent Automation

Sources

Standard Webhooks specification — https://www.standardwebhooks.com/; GitHub Docs — Webhooks — https://docs.github.com/en/webhooks