Is it possible to trigger an app link randomly within Nextworld

We have a use case we are trying to solve for where a user is randomly prompted (to start with using a set probability) to fill out a form after saving a record. So I have two questions:

  1. Is there a way to generate a random number (like from a normal distribution) in a logic block or anywhere else?
  2. Is there any way to set up an app link which is only followed if a condition is met, and otherwise doesn’t happen? (I suppose a dynamic app link maybe, but in the second case I just want it to follow what the save would normally do depending on the option selected).
    Thanks in advance!
  1. There is an action “Random Number” in Logic Blocks. You must define a lower and upper bound.

  2. I’m not sure entirely if this is what you’re looking for but in logic you can use a Queue App Link action to directly send to another application. The app link must be configured in your application.

1 Like

Thanks Aaron, I’ll take a look at these!