maheswara -
ddellsperger was able to help me get this resolved. If you do not have an offset, limit, or start in the JSON response anywhere AND the pagination type is "cursor", you can do the following settings in your HTTP snap and this will get you all the records.
- Has next: $entity.records.length != 0 (your $entity.records might be different depending on how your JSON response looks. This is just the location where your data is located)
- check the check box for "Reuse request parameters."
- Override parameters: my API had a query parameter called objectsBefore that I could use. For the name I did objectsBefore, value was $entity.records[$entity.records.length - 1].id (basically what this is doing is getting the LAST record in the array and using that as the objectsBefore value then to page to the next set of records)
- Chris