Hi,
I created the flow base on HTTP and then response is only XML as below. I want to put the condition after HTTP output and make the another action. But i still cannot find the condition for http output body. I only can see @equals(body('HTTP'), '')
Here is my http output body.
<Soap:Envelope xmlns:Soap="http://schemas.xmlsoap.org/soap/envelope/">
<Soap:Body>
<IsNASKeepAlive_Result xmlns="urn:microsoft-dynamics-schemas">
<return_value>Your return value is here.</return_value>
</IsNASKeepAlive_Result>
</Soap:Body>
</Soap:Envelope>
I want to put the condition like this on condition.
IF return_value = "" THEN
'Do something
ELSE
'Do something
Regards,