I have attempted to implement an API using Integration Studio, but I did not receive the correct response. Instead of the expected text/html response, I received a different response. How can I address this issue?
this is the code config in my integration studio API
<?xml version="1.0" encoding="UTF-8"?>
<api context="/****" name="***" xmlns="http://ws.apache.org/ns/synapse">
<resource methods="POST" uri-template="/****">
<inSequence>
<property description="messageProperty" name="messageType" scope="axis2" type="STRING" value="text/xml"/>
<call>
<endpoint>
<http method="post" uri-template="https://www.amenbank.com.tn/php/simulator.php?ts=1684227888868">
<suspendOnFailure>
<initialDuration>-1</initialDuration>
<progressionFactor>-1</progressionFactor>
<maximumDuration>0</maximumDuration>
</suspendOnFailure>
<markForSuspension>
<retriesBeforeSuspension>0</retriesBeforeSuspension>
</markForSuspension>
</http>
</endpoint>
</call>
<respond/>
</inSequence>
<outSequence/>
<faultSequence/>
</resource>
</api>