Issue in database storage

0
I am retrieving a web service of weather data through microflow. I want the data to be stored in the database at the same time, but its not happening. Please help me.
asked
2 answers
1

Well, of course it's not happening: you get data, create a new object and commit that object. You ignore the data you have retrieved. You may find this module useful: it show you how to present the retrieved data in the user interface. Once the data is in an object which you can present in the user interface, it is easy to persist it in your database.

answered
1

If your REST request uses an Import Mapping for the Response, you can set this to automatically commit the returned entities to the database.

answered