have been provided some information to access an API. This includes an API Key and an element to filter inside the body.
I am able to build and run this in Postman, but fails when running in Power Automate.
The following code snippets are from Postman in the format of JavaScript Fetch
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("accept", "application/json");
myHeaders.append("x-functions-key", "5I2aeuDa4PCiwINdknxxxxxxOrbTSclHdUJd0cYhFWLUrA4TGIg==");
var raw = JSON.stringify({
"xxxxxxId": 142
});
var requestOptions = {
method: 'GET',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
This is the setting from Power Automate

I have 2 levels of error.
1 - The provided 'Http' action inputs are not valid. A request body must not be included for 'GET' requests.
If I remove the body,
2 - Http request failed as there is an error: 'The SSL connection could not be established, see inner exception.
To clarify, I can get a response using Postaman, but not with Power Automate