To be able to make reports including historical data of the current dataset, I would like to make a snapshot of the data I'm exposing using my OData service. I can achieve this by calling my own service (in the browser) and save each exposed entity as a .txt file, but this sounds like a cumbersome solution. Therefore, I was wondering whether I could achieve this in some other way. Any ideas?
asked
Viktor de Jonckheere
1 answers
0
My current solution is to create a microflow with the following activities:
GET the base URL of the OData service.
Split the resulting string using the '"url":' as separator (community commons), tail the outcome (the head is information I don't need)
Loop through the splitted items
Get the location by trimming and finding “
GET the base URL + location, expand if you want the associations as well