Forum Discussion
alchemiz
6 years agoContributor III
Hi Tim,
You can utilize the “Has next” and “Next URL” property of the REST Get snap
Here’s a example of what your REST Get snap should look like…
you have the initial request https://rest_endpoint/documents/stuffs?page=1
build an expression that will execute the next url … eval($entity.result.length > 0)
generate the next url ‘https://rest_endpoint/documents/stuffs?page=’.concat(parseInt(snap.out.totalCount) + 1)