API responses with multiple pages

I need to find a way to have API JSon responses that have multiple pages, to be created into a single page.

Anyone found a solution for this?

The typical pattern for handling paging is to run the request in a loop until you're out of pages (or get the number you want) and concatenate the entities from each response into a single result set. Then you can process the results as a single set instead of per each page.

Tim Thanks for the response. Would you have an example of the solution, you referenced?

Looks like there's an example of some batch processing in a loop here: https://developer.genesys.cloud/analyticsdatamanagement/recording/recordings-downloader

Thanks Tim. Very helpful.

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.