asteriskPagination

What's starting_after?

A cursor to use in pagination. starting_after is an object ID that defines your place in the list.

For example, after retrieving 100 objects in a list request, you can pass starting_after=cursor_data to fetch the next page starting after the last object.

Example Usage :

  1. Make a GET request to fetch the first page of data.

{
  ...
  "starting_after": "20240213010101_abcde"
}
  1. If the response contains lastKey, send another GET request with starting_after as a query parameter to retrieve the next page.

GET /transactions?starting_after=20240213010101_abcde

Last updated