What it is
Inbound webhook endpoints allow third parties and partner systems to push events into Revive.Why we use it
Webhooks provide near real-time event ingestion without polling.Data flow
- Third parties send events into
revive-apiendpoints under/v1/webhooks/*.
Owner repo(s)
revive-api
Relevant modules/endpoints
Common webhook endpoints:/v1/webhooks/affiliate-partners/v1/webhooks/gvg/v1/webhooks/website-case-study
revive-api/src/webhooks/webhooks.routes.jsrevive-api/src/webhooks/webhooks.service.js
Operational notes
- Webhook handlers should be idempotent and safe to retry.
- Prefer validation at the boundary to reject malformed payloads early.

