{ "opencollection": "1.0.0", "info": { "name": "Novu Activity Events API", "version": "3.15.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Events", "type": "folder" }, "items": [ { "info": { "name": "Novu Trigger Event", "type": "http" }, "http": { "method": "POST", "url": "https://api.novu.co/v1/events/trigger", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "\n Trigger event is the main (and only) way to send notifications to subscribers. The trigger identifier is used to match the particular workflow associated with it. Maximum number of recipients can be 100. Additional information can be passed according the body interface below.\n To prevent duplicate triggers, you can optionally pass a **transactionId** in the request body. If the same **transactionId** is used again, the trigger will be ignored. The retention period depends on your billing" }, { "info": { "name": "Novu Bulk Trigger Event", "type": "http" }, "http": { "method": "POST", "url": "https://api.novu.co/v1/events/trigger/bulk", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "\n Using this endpoint you can trigger multiple events at once, to avoid multiple calls to the API.\n The bulk API is limited to 100 events per request.\n " }, { "info": { "name": "Novu Broadcast Event to All", "type": "http" }, "http": { "method": "POST", "url": "https://api.novu.co/v1/events/trigger/broadcast", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Trigger a broadcast event to all existing subscribers, could be used to send announcements, etc.\n In the future could be used to trigger events to a subset of subscribers based on defined filters." }, { "info": { "name": "Novu Cancel Triggered Event", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.novu.co/v1/events/trigger/:transactionId", "params": [ { "name": "transactionId", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "\n Using a previously generated transactionId during the event trigger,\n will cancel any active or pending workflows. This is useful to cancel active digests, delays etc...\n " } ] } ], "bundled": true }