I haven’t used HTTP Client much yet, so I’m not sure, but I know there a couple other posts on pagination in this Snap:
Hi,
I’m not able to access the original document during pagination with the HTTP Client. This worked with the REST Client, but looks like it’s not possible any more.
This is a needed feature when the API being called does not respond back with limit/offset/next url, but rather only responds with the total number of elements and a data array. Without accessing a previous document (e.g. $original.offset), pagination is not really possible without a rather odd workaround I found:
Namely that I a…
I’m in a similar position and can’t seem to figure out how to iterate through all of the pages with the information I get from the API. The API I’m calling is very barebones, not including the total number from the call or page number. Here’s a example response:
[
{
"enrollment_id": 1223524,
"content_type": "Store Purchase",
"module_name": "Module 1",
"user": {
"id": 111111,
"first_name": "TEST",
"last_name": "PERSON 1",
…