The main problem I can see is that you have a get request with a JSON payload. this is now allowed in Bubble (and normally, a GET request shouldn’t have a body I believe). Do you have API Doc?
What I believe is this API expect a json body and Bubble doesn’t have this option for GET (and this is normally correct because GET shouldn’t have a body, only querystring parameters (and this is what Bubble do by the way). This API doesn’t follow main guideline for creating GET endpoint. They should convert it to POST or use url parameters instead.
The only option I think you have is to use a plugin or third party tool… or try to do a request on Bubble ideaboard
ah thanks for the explanation. I pulled a bug report to see if bubble team can do something, unless I 'll contact the service team unless I’ll do with external service like you suggest. Clear like water !!! thank you again !!!
Can you share the input result part with headers and body?
You can always send the request to requestbin.com from postman and make and compare both results.