REST API Pagination

How to use pagination with REST API? There are no docs, found only this answer https://integration.keap.com/t/getting-the-files-via-api/22454/11, but it doesn’t work for me. Or I’m doing something wrong…

I’m using PHP SDK, how can I paginate through emails? can’t use DataQuery here

Limit is your page size and offset is where to begin the paging so if you make a call to an offset of the next record after the first page of limit records, you essentially are calling for the second page.

I see, I should’ve used where method… Thanks!

1 Like