Pagination

All of the endpoints with a multi-record response within the Vista API support pagination. Pagination allows our services to provide the optimal experience for our customers. By implementing pagination in your application, you can minimize response times for requests and generally improve the end-user experience.

We use forward-only paging with a continuation token strategy. The API limits multi-record GET responses to 1,000 records, although the caller can provide a lower limit using the limit parameter.

Note: The API may return fewer records than the limit value. Examination of the continuation token and next properties is needed to determine if additional records exist. As long as there is a next URL value, you should continue making GET calls to ensure all data is read..