Many GET
methods are used to list certain resources. In these cases, pagination is used to set/modify the amount of information displayed at once.
The following three parameters are used for pagination:
limit
: limit of number of returned objects per page. Default is 20.startingAfter
: an object ID that defines a list object's position in the list by identifying the list object(s) appearing before it.endingBefore
: an object ID that defines a list object's position in the list by identifying the list object(s) appearing after it.