The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Hi, I don't have much experience with API requests. I am trying to understand how it all works. I am currently using Node-RED (visual Node.js) to process the requests. I was able to complete a GET request and i'm now trying to do a PATCH request to u...
After Further investigations, It appears the request body was sent via msg.payload and not msg.req.body.I was finally able to do my PATCH resquest.Thank you
My guess is that I am not sending the JSON to the place the API is looking for it.I have tried multiple things: msg.req.body, msg.request.body, msg.body, msg.request, msg.reqThe issue is that I don't know where the API is expecting the JSON.Regards. ...