Hello @mtran21
Here’s a simple pipeline for GET call:
![]()
I’m using the following Service URL to GET weather info in this case for London:
![]()
As you can see, you need to provide your APPID, you will have that after successful registration on the OpenWeatherMap.
There’s a lot of different ways to get weather information about one or more cities.
Also, you can make this or another call using pipeline parameters as query parameters.
After a successful api call, you need a mapper, to make your data flat and to map only needed fields.
And then you can insert data in DB table, in this case I’m using MySql. No matter which DB you use, you are going to need an Account.
Hope this will help.
BR,
Marija