View Source Novu.Events (Novu v0.2.0)
Provide access to the Novu Event API
Link to this section Summary
Functions
Trigger a broadcast event to all existing subscribers, could be used to send announcements, etc. In the future could be used to trigger events to a subset of subscribers based on defined filters.
Using a previously generated transactionId during the event trigger, will cancel any active or pending workflows.
Trigger event is the main (and the only) way to send notification to subscribers. The trigger identifier is used to match the particular template associated with it. Additional information can be passed according the the body interface below.
Link to this section Functions
@spec broadcast_to_all(name :: String.t(), payload :: map(), opts :: Keyword.t()) :: Novu.Http.response()
Trigger a broadcast event to all existing subscribers, could be used to send announcements, etc. In the future could be used to trigger events to a subset of subscribers based on defined filters.
@spec cancel_event(transaction_id :: String.t()) :: Novu.Http.response()
Using a previously generated transactionId during the event trigger, will cancel any active or pending workflows.
@spec trigger_event( name :: String.t(), payload :: map(), to :: String.t(), opts :: Keyword.t() ) :: Novu.Http.response()
Trigger event is the main (and the only) way to send notification to subscribers. The trigger identifier is used to match the particular template associated with it. Additional information can be passed according the the body interface below.