I'm accessing an API using FME and trying to fetch records by passing certain ids as a parameter to the API . For example the API is,
https://developers.onemap.sg/commonapi/elastic/omsearch?searchVal=1&returnGeom;=Y&getAddrDetails;=Y
In the above API, I need to keep on increment the value of searchVal=1 from 1 to 100 and then pass each to httpcaller to return the response.
I'm able to do this using python caller and get the response using for loop concept. But, I want to do this without python and use any other transformers which does the trick for me.
Any guidance would be appreciated.
Thanks!