All top-level API resources have support for bulk fetches via "list" API methods. For instance, you can list documents which have has a status chance, list customers, and list products. These list API methods share a common structure, taking at least these three parameters: limit, starting_after, and ending_before.
QuoteCloud utilizes pagination with a limit and page parameters. Both parameters take an existing object ID value (see below) and return objects in reverse chronological order.
Parameters |
---|
limit optional, default is 10 A limit on the number of objects to be returned, between 1 and 100. This defaults to 10 if blank and using pagination. |
page optional Page is the Integer representing the starting place you will return values for ie. if you have a list of 100 documents and the limit is set to 20 and you set page to 1 then the results will skip 1-19 and include the remaining. |