Hi there,
I’m currently developing a Freshdesk Custom App and need to do some calls to a custom REST service. GET requests are working fine with the request method. But for POST methods, the body never gets forwarded to the endpoint and is always empty.
FDK 14732: (proxy.js) Making proxy call with options as {"headers":{"Authorization":"XXXXX"},"body":"Hello world","url":"https://OUR_CUSTOM_API/api/v1/orders/","method":"post","maxAttempts":1,"retryDelay":0,"timeout":5000}
I tried it with json-data (of course encoded with JSON.stringify) and simple strings (like in the log example). The body received by the REST API is always empty. If I call the API via Postman it’s working, So no need to mistrust the API itself.
I tried multiple FDK versions (with 6.9.0 being the most current one) and also using PUT instead of POST. Nothing helps.
Do you have any thoughts on that?