I want to do something as follows in Qlikview.
Need to call the API in the loop till the resp becomes empty array. Also need to append next value in the URL from the response.
TempTable:
Let next = '';
Let apiUrl = https://myapiurl;
do {
resp = Calling my API (apiUrl + next);
push resp.data to TempTable
next = resp.next;
} (while resp.data.length > 0);
Target is I want a consolidate output of the API calls.
Suppose if we can't do it with TempTble, is there any other ways?