Novu · Example Payload

Novu Trigger Event Bulk Example

NotificationsMessagingIn AppEmailSMSPushChatWorkflowsOpen SourceSubscribersTopicsInboxWorkflow OrchestrationMulti ChannelDigestMCPFrameworkReact

Novu Trigger Event Bulk Example is an example object payload from Novu, with 1 top-level field. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

events

Example Payload

Raw ↑
{
  "events": [
    {
      "name": "invoice-paid",
      "to": {
        "subscriberId": "subscriber_001"
      },
      "payload": {
        "amount": 4999,
        "currency": "USD",
        "invoiceId": "in_42"
      }
    },
    {
      "name": "invoice-paid",
      "to": {
        "subscriberId": "subscriber_002"
      },
      "payload": {
        "amount": 9999,
        "currency": "USD",
        "invoiceId": "in_43"
      }
    }
  ]
}