Path to next page URL field in HTTP response body

I've gone through the documentation about next page in the docs, however the docs do not show a sample.

In particular, given the json response{
"value": [
{
"Id": 21
}
],
"nextLink": "NextPageRelativeUrl"
},

the nextLink in the response would be the next page url, i've tried the following values in Path to next page URL field in HTTP response body

nextLink

"nextLink"

result.nextLink

results.nextLink

record.nextLink

so, what do i need to set this value for pagination to work correctly?

Hello Rick,

For the example you shared it should just be nextLink.

To give more context, integrator.io uses the path against the HTTP response body to find the URL to use when requesting the next page of data. Could you check if the path you are using is from the HTTP response and not the parsed output response?

For instance, in this case, it would be data.customers.pageInfo,endCursor


Regards,

I setup my connection base uri incorrectly.... :-$

Thanks for that!