End the execution in the sub microflow

0
Hi there, I’m having a sub microflow that check for a rest api response and if its incorrect, I have show the error page to the user. I execute the show page activity. But the control doesn’t stop there. It goes back to the parent microflow and then continues from there. Is there a way to stop the microflow from executing in the sub microflow ? Regards, Vinod.
asked
1 answers
1

You could have the submicroflow send a return value back to the parent microflow and then use that value to determine if the parent microflow should continue.  This return value could be a boolean or an enumeration, depending how complex your logic is.

answered