Forum Discussion
Anonymous
4 years agoNot applicable
Paginated Report API - Not a lot to work with! :-)
Hey guys Done extracting data from RestAPI a few times where the data is paginated - Most of the times it has a lot more fields to help with the itteration. Read all the responses on here and they...
lbendlin
Super User
4 years agoYes, that is unfortunate. it forces you to use list.accumulate or even a recursive function where you have to lug the received data around with each loop. Or you could harvest only the URLs and hope that your browser cache helps when you then call them again to collect the data.
Anonymous
4 years agoNot applicable
Yes - Can you help me with the code i have written to do it the best way? I have proper hit a brick wall now 😞
- lbendlin4 years ago
Super User
unfortunately helping in these scenarios is very difficult without access to the API.
Practice using List.Accumulate. Read about recursive functions. Try stuff out.