Outbound webhooks are available on Team and Enterprise plans.
What the connector exports
The endpoint receives the webhook event types you select. For notification analytics, these message events are usually the most useful:message.sentmessage.deliveredmessage.failedmessage.seenmessage.readmessage.archived
message.sent, message.delivered, and message.failed for delivery reporting, and add message.seen, message.read, and message.archived if you report on Inbox engagement. You can also subscribe to preference and workflow events.
Each event arrives as a separate item in a delivery batch, and the connector transformation decides how many warehouse rows that batch produces. The default is one row per event.
Choose a destination
Each warehouse has its own authentication model, default column layout, and transformation output. Open the guide for your destination and follow it end to end.
If you want files rather than rows, an object storage connector writes each batch as an object that you can load on your own schedule.
Plan the schema before you enable the endpoint
Connectors insert into a table that already exists. They do not create or alter tables, so a schema mismatch shows up as a failed delivery rather than a migration. Two decisions matter more than the rest: Keep the full webhook body in one column. Every connector guide’s example stores the complete payload as JSON or a string alongside a small number of extracted columns. New fields in a Novu payload then land in the warehouse without a schema change, and you promote fields into views once you have seen real rows from your own environment. Add an insert-time timestamp column. Novu payload fields vary by event type, so a column your transformation always sets is the reliable partition and sort key. The connector examples usereceived_at.
Do not treat event payloads as a stable contract for extracted columns. Send one example of each event type you plan to subscribe to, inspect what actually arrives, and extract only fields that are present across the event types you store.