Forum Discussion
Syndicate_Admin
Administrator
3 years agoUsing the results of one Web query to hit multiple Web query endpoints
I'm trying to use the results of one web query to run a series of web queries, and ideally append all the results. Here is the general scenario: Web endpoint: "https://127.0.0.1/SalesRegions" R...
Syndicate_Admin
Administrator
3 years ago| RegionName | Field1 | Field2 | Field3 |
| Paris | lorem | ipsum | dolor |
| Paris | sit | amet | consectetur |
| Paris | adipiscing | elit | sed |
Formatted in JSON of course. The contents of the table are immaterial, what's important is that I:
1. I have to call a REST API that will give me a list of endpoints I need to query. There is no way to know in advance what these endpoints will be, and there could be hundreds of them. So I can't use hard-coded data sources.
2. Every endpoint will return a table with an identical number of fields, and all the fields are the same name. I need to smash together all these individual tables into one large one.
- lbendlin3 years ago
Super User
See attached for the boilerplate code.