Hi, I have created a GET Rest API using RestService Module in Mendix and I am trying to call this API from POSTMAN. I have used seriliazeObjectToJson from RestService Module but response is not coming into Body. I have attached a screenshot for the microflow. I am trying to get a list of users which will have username and password in it, and want to generate a response something like below: { "error": false, "errorCode": null, "message": "API call Successfully", "payload": { "UserDetails": [{ "username": "xyz", "password": "qwqewe" }, { "username": "ABC", "password": "poewrw" }] } } Any help will be really appreciated.
↧