Quick Notes91 words
Integration using webhooks — quick notes
Webhooks / service hooks — quick notes
| Element | Meaning |
|---|---|
| Event | What triggers it |
| Filter | Narrow to a pipeline, a result, a branch |
| Consumer URL | Where the POST goes |
| Secret | Signs the payload — verify it |
- Push, not poll — faster, no rate-limit waste.
- Delivery is at-least-once → receivers must be idempotent.
- An unverified endpoint is an open trigger for anyone who learns the URL.
- Missed deliveries need a reconciliation path.