either case:
Case 1:
* if both routes in step1 are met and only when all are completed, it will go to step2.
Currently, it is not possible to execute a single call after both route conditions are met. If you have a workflow where you expect both conditions of both routes to be fulfilled, we suggest using filters in a sequence instead of routes. For example, if the first condition is met, execute a step; then, if the second condition is met, execute the second step, and finally, make the call.
We are in the process of updating our user interface, so you will soon be able to add steps after a Router.
case2:
* if route 1 or route 2 is met and only when completed ( if condition goes to route 1, else goes to Route 2) , if any of this is completed go to Step 2.
For this use case, you can add the call as the final step in both routes.