I’m working on a Webservices connector and noticed something odd. when I aggregate the source, the count is showing 100 more than what the API returns.
and in the accounts counts are not matching with what API’s returning
I’m using pagination here. Could this be a pagination issue?
@selvasanthosh yeah that is the issue your pagenumber is starting with 1 whereas your offset is starting from 0 so after page 1 the offset is again set to 1 and you end up getting same page. Try initializing offset to 1. Please accept it as solution if that fixes your issue