Hi ,
I need to call different target server paths based on incoming request query param value.
My incoming query param is "async" which will have either "true" or "false".
based on the async query value, i need to change path of target .
<HTTPTargetConnection>
<LoadBalancer>
<Server name="target-server"/>
</LoadBalancer>
<Path>/v1/sync/test</Path>
</HTTPTargetConnection>
if async=false
<Path>/v1/sync/test</Path>
if async=true
<Path>/v1/async/test</Path>
Thanks