Hi,
I have been working on integrating pagination into my workflow but I running into an error where the “Pagination Complete When: Other” option is not behaving as expected.
The API I am call uses a query parameter of “start” and increments in of 200. There are roughly 600 items that need to be queried so the pagination call needs to run for a minimum of 4 times to ensure all the items are gathered.
I would like the start parameter to increase by 200 on each call until a value of {{ $response.body[‘active-users’][‘total-returned-record-number’] == 0 }} gets returned.
However when I run the call I get the following error:
However when I increase the increment to a value (800 for example) that will return a result that will match the Complete expression it matches as true
I don’t think the increment expression I have set is working as intended, does anyone know what I am doing wrong.


