When calling Api using HTTP connector (GET method) from Azure Logic App the following message was popped up:
BadRequest. Http request failed with status code 'TrustFailure' and status message: 'The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.'.
The same URL returned correct message in browsers and Postman as below (XML format):
<response status="success">
<result>
<msg>
<line>Report job enqueued with jobid 2334</line>
</msg>
<job>2334</job>
</result>
</response>
The URL did not require authentication. Why did the same URL worked in browsers (and postman) fail to generate a result in HTTP connection of the Logic App? How to overcome the "SSL/TLS" issue in Logic App?



