Pagination
Understand how to paginate responses.
For endpoints that list all items in a resource collection, you can optionally paginate the response using two request parameters
-
The maximum number of items to return
-
Accepts integers from 0 to 500
-
Defaults to 100
-
The maximum number of items to return
-
Accepts integers from 0 to 500
-
Defaults to 100
-
The starting point within the list of items
-
Accepts integers 0 and greater
-
Defaults to 0
API responses are returned in reverse chronological order, meaning the newest items will appear at the top of the response. If no pagination parameters are supplied, Deliver will default to returning the most recently created 100 items.
Examples
The below request has a size
of 10 and an index
of 0, meaning the API would return transfers 1-10.
To return the next 10 transfers, make a request with a size
of 10 and an index
of 1. This would return transfers 11-20.
Was this page helpful?