Api to get results

Hello, I’m on version 3.1.3-201902130614340856-5cd4808 and we’re using a get command:

GET /api/v3/job/{id}/results?offset={offset}&limit={limit}

to retrieve data. In previous version we used to specify offset and limit to grab every 500 records. However, in this version, we can’t retrieve anything past 500, e.g.: offset=0&limit=500, offset=501&limit=1000, etc…

Hello @trang,

The limit is 500, so I believe your second request should look like:

GET /api/v3/job/{id}/results?offset=500&limit=500

If your dataset has more than 500 records, does this request return anything?

Got it…thanks.