- results: all events
- order: created desc (most recent to oldest)
- result: events that are newer than
evt_id
(created at a later time thanevt_id
) - order: created desc
- if you loop through the results of a regular list events call, this is the cut off point where neither the specified event nor any more events after it are returned
- result: events that are older than
evt_id
(created at an earlier time thanevt_id
) - order: created desc
- if you loop through the results of a regular list events call, this is the starting point after which events will be returned
I found that my interpretation of what “starting_after” and “ending_before” mean was the inverse of how it works in the Stripe Api, because I was thinking in terms of when they were created 🤷
Generally objects in Stripe list calls are sorted from newest to oldest, so “ending_before” and “starting_after” are better understood as cut off or starting points (respectively) when going from start to finish in the list of results.