Hi
Starting off I have a URL(example: https://blahblah.com/?start_date=2022-12-01&end_date=2022-12-31&resolution=period&apex_user_id=1234). The URL is from an API and I eventually run it through a program that gets me the sum of a specific column at the end of the workflow. The result of the workflow with the particular example above returns 1 column for sum with the value 3:
Record | Sum
1 3
Next I have file which has a list of 400+ ids of different lengths(example: 1234, 10005, 1846, 321,.. etc.)
I need to run the workflow for each one of these ids that will be added to the end of the url. Each id will be after the "=" sign and replace the 1234 in the example url above.
The URL will start like: https://blahblah.com/?start_date=2022-12-01&end_date=2022-12-31&resolution=period&apex_user_id=
And it needs to add each id at the end and run through the workflow and get me the results for each id.
The final result should be a table that shows the id and the sum(result of workflow) for each id.
Record |ID | Sum
1 1234 3
2 10005 8
3 1846 32
I've seen many questions about loops and cannot solve it. Please let me know how to go about this, thank you.