Replies: 1 comment 3 replies
-
Hey @adimyth, I think you misunderstood the model a bit. Under normal circumstances you'd have one application per each of your customers. This application can have multiple endpoints (so can listen on multiple different URLs), and you'd send it to this one application which will send to all of the endpoints. Since applications are different customers of yours it's extremely rare that you'd be sending all of them the same message. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a mechanism to broadcast a message to all applications?
Scenario - Suppose we have 3 applications that are subscribed to an event "user.signup". If a new user signs up, then how can we notify all the applications (and endpoints subsequently filtered by event type) at once? Currently, the only method available is to call the create message api for each application one by one. This I believe is a common use case.
Beta Was this translation helpful? Give feedback.
All reactions