Status: roadmap
Programmatic webhook subscription — registering an HTTPS endpoint to receive CauseFlow outbound events as HTTP POST payloads — is not yet shipped. This page describes the planned design so you can prepare your integration in advance.Real-time delivery today
While programmatic webhook registration is in development, you can receive all 21 outbound events in real time via Server-Sent Events: Endpoint:GET /v1/notifications/stream
This is a persistent SSE connection authenticated with your JWT. Events arrive in real time as they occur. See the SSE stream reference for connection details, event format, and reconnection semantics.
Planned webhook subscription design
When webhook subscriptions ship, the API will follow this pattern: Register a subscription:POST to your url for each matching event. The request body will be the event payload (same schema as SSE data: fields — see the event catalog). Each request will include an HMAC-SHA256 signature header:
TypeScript
Inbound webhooks (available now)
If you are looking for the inbound alert ingestion endpoint — receiving alerts from your monitoring tools into CauseFlow — that is already available:- Receive alert —
POST /v1/webhooks/{tenantId}/{provider} - Payload formats — per-provider schema reference
SSE stream (live today)
Real-time outbound event delivery via Server-Sent Events
Outbound event catalog
All 20 events with payload samples