How to create a POST API in Industrial Edge Flow Creator

0
Hi All,   I am trying to create a POST API in the Industrial Edge which receives the generic response from an external application.  I did use proper authentication while testing and did get the authentication token. When I am testing it through the Postman, I am getting either 404 or 503 response code.   However, when I run the same flow using pure Node red, I am getting the desired behaviour. Could you give me a heads up in building a generic simple API in Industrial Edge Flow Creator that can be tested by Postman.   Attached sample flow built in Node Red   [ { "id": "7cfeff5f7ee7b433", "type": "http in", "z": "f48a6a085b6b67fd", "name": "Temperature Post", "url": "/api/temperature", "method": "post", "upload": false, "skipBodyParsing": false, "swaggerDoc": "", "x": 240, "y": 140, "wires": [ [ "dbf96b69a0c04da4" ] ] } ] Curl for the same is attached curl -X POST http://<node-red-host>:1880/api/temperature \  -H "Content-Type: application/json" \  -d '{"temperature": 27.3}'   Once tested would like to build in Mendix
asked
0 answers