Hey community,
I am trying to set up pagination for my REST connector to ADP. I need to use the CData parameters $skip & $top.
My first call should be: https://api.eu.adp.com/hr/v2/workers?$skip=0&$top=100
Then I need to increment the $skip parameter by 100 so the next call would be: https://api.eu.adp.com/hr/v2/workers?$skip=100&$top=100
In need to end when I receive an empty response.
Anyone that has experience with this?