Hello everyone,
I have been working on several different methods on trying to connect to an API and download some data. The method i have found that is currently working and I want to explore to see how big of an issue this could be is to use HTTP addresses.
So i have an HTTP address that will return a JSON. Say it's http://ThisAnnoyingAPI.com/UserID = 'bbb'
I have a list of UserId's that I want to get the data from the API with and in this API's infinite wisdom I have to query each user id on it's own.
So i have 2 questions. First is how can i dynamically update my HTTP address and replace it with the next user ID that I want to run the HTTP script with.
Then with that is the 2nd question, what is the best way to loop this? So my goal is I have an HTTP Address, it runs the first ID, then loops, runs the second, grabbing all of the JSON files, when it's done it parses all of the JSON's together.
I have attached my workflow that successfully grabs one userID that I hardcode into the HTTPs line.