Webhook Behavior
Bridge webhooks are real-time notifications, but delivery is at-least-once and unordered.
Recommended Handling
- Verify webhook signatures and parse the
eventId. - Use Get Event to fetch the full payload.
- Fetch the current resource (
Service,Policy, etc.) for critical decisions.
previous and data Snapshots
Some events include previous and data, but they can be stale or out of order and are being
considered for deprecation. Treat them as convenience only.
Idempotency
- Store
eventIdto ignore duplicates. - Prefer the latest resource state if updates conflict.