I need to make multiple GET requests with varying parameter in my call. I am using
num=List.Generate(()=>0, each _ < 940, each _ + 10), along with
Source = Json.Document(Web.Contents("https://kdkkd/live/rest/api/2/search?jql=project=""kdk""&expand=kfkf&startAt="& num &"&maxResults=10")),
So essentialy I want to call this request 94 times. And then almigate the 94 tables in to one large table.
Please help