#squirrel-event-pagination

1 messages · Page 1 of 1 (latest)

fringe groveBOT
rapid sage
#

squirrel-event-pagination

#

If the API responds with has_more = true, I'm not seeing a next_page parameter in the response
That is expected, there's no concept of a next_page property in our API for pagination. You are supposed to paginate based on the last object id and then retrieve the next page with starting_after: 'evt_123' as documented on https://stripe.com/docs/api/pagination or use our SDKs to automatically paginate as documented on https://stripe.com/docs/api/pagination/auto
as to where to get the next set of responses (like i see with other GET endpoints). Is there something different about pagination on the events endpoints?
No difference, all our List APIs work the same way and have for 12+ years at this point.
Are you maybe mixing things up with our Search APIs which work differently maybe?

hasty tangle
#

Yes, I think I am mixing things up with the search API. Thank you