Hi,
I'm working with the integrator.io API, specifically the https://api.integrator.io/v1/imports endpoint, to fetch all imports for our client. However, I'm running into an issue when dealing with a large number of imports.
Current Situation:
- I'm using Postman Flows to fetch and process the data from the /v1/imports endpoint.
- When there are many imports, the response array is too large for Postman scripting to handle efficiently, resulting in out of memory errors.
My Question: Is there a way to retrieve this data in smaller chunks or use pagination with the /v1/imports endpoint? Specifically, I'm looking for options like:
- Using query parameters such as 'limit' and 'skip' to paginate through the results. For example:
GET https://api.integrator.io/v1/imports?limit=100&skip=0
GET https://api.integrator.io/v1/imports?limit=100&skip=100
and so on. Or are there maybe any other sorts of pagination that I can use?
Thank you in advance.