Webhooks
Example config:
webhooks:
enabled: true
endpoints:
- name: trade-webhook
path: /webhooks/trade
targetURL: https://trade.example.com/webhooks
secret: ${TRADE_WEBHOOK_SECRET}
maxAttempts: 5
initialBackoff: 1s
timeout: 10s
The gateway validates HMAC signatures and forwards payloads with retry/backoff.
Deep dive
- Reference: webhooks config, Problem+JSON
- Code: Webhook handler, Webhook config + validation