Hello I'm in need of doing a REST synchronization with an API that does not have a traditional pagination of navigating through all the results using limit and offset. What it has is paginating by using scrolling.
It works like this, after doing the first call to the API it returns the scrollId in the body response and it needs to be passed to future calls and then you can keep making requests with it until the scrolling ends, that is, until the array of itens returned in the response is empty.
Is there any way I can achieve this use case by using the declarative features of REST Synchronization?
Thanks!