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

Link to this function

broadcast_to_all(name, payload, opts \\ [])

View Source
@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.

API Documentation

Link to this function

cancel_event(transaction_id)

View Source
@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.

API Documentation

Link to this function

trigger_event(name, payload, to, opts \\ [])

View Source
@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.

API Documentation