Forum Discussion
powerbitotheppl
4 years agoAdvocate I
API Pagination in JSON Body - How to Access with Power Query in Custom Connector?
Hello, I have built a custom connector to connect to the Vimeo API via OAuth2. Everything is working well, but it appears I need to come up with a solution to deal with pagination, as I am only g...
lbendlin
4 years agoSuper User
That's actually simpler than if pagination is done in the header. Parse your received body as JSON (which you likely are already doing) and grab the pagination fields (either offset, or nexturl, or whatever - depending on your API. Then stitch all results together as needed.