I am using Analytics to pull in data from an API. When I use the pagination protocol provided by the API (offset & limit), it is causing duplicates instead of paginated results (so, as an example, I'd be expecting records 1,2,3,4,5,6,7,8,9,10, but getting 1,2,3,4,5,1,2,3,4,5).
In addition, I have a second API that uses the parameters $offset & $limit, but I receive an error when using these in the uploader. Is there any way around that so that I can still pull paginated information from that source?