Hello All,
I want to add the conditional flow inside the shared flow as below,
<SharedFlow>
<Flows>
<Flow name="HealthUp-Flow">
<Description>Defines the conditional flow when the service is running successfully</Description>
<Request/>
<Response>
<Step>
<Name>Assign-MessageProcessConditionalRouting</Name>
</Step>
</Response>
<Condition>responseStatus = "success"</Condition>
</Flow>
<Flow name="HealthDown-Flow">
<Description>Defines the conditional flow when the service is not running</Description>
<Request/>
<Response>
<Step>
<Name>Assign-MessageSendErrorResponse</Name>
</Step>
</Response>
<Condition>responseStatus = "error"</Condition>
</Flow>
</Flows>
</SharedFlow>