You must handle this programmatically.
To prevent returning excessively large result sets from a single API call, a hard limit is enforced.
When building automation, you should split large result sets into smaller chunks and retrieve them using multiple sub-requests. This is done by using the indexFrom parameter together with fetchSize.
How indexFrom works
To retrieve the next portion of data, increment indexFrom by the previous fetchSize.
Example
Recommended approach
Replace a single API call with a loop that:
-
Executes the request with the current indexFrom
-
Processes the returned data
-
Increments indexFrom
-
Stops when the response is empty
This approach ensures reliable automation while staying within API limits.
------------------------------
Zbigniew (Zibi) Szmigiero
IBM
Międzyrzecz
------------------------------