Pagination
Basic pagination by using limit and offset
Introduction
The simplest approach is to use the query parameters limit and offset. Start with offset 0, and on each consecutive call, increment by the value of limit.
This is mostly suitable for scenarios where paging is used for a screen to navigate back and forth through data.

Basic pagination by using limit and offset parameters
Flow
# First page
/v1/objects/customers?companyId=EN&limit=100&offset=0
# Second page
/v1/objects/customers?companyId=EN&limit=100&offset=100
# Third page
/v1/objects/customers?companyId=EN&limit=100&offset=200Limitations
This approach can become inefficient with large datasets and may encounter consistency issues when data is being modified during pagination. For large volumes or data consistency requirements, consider using Optimized Pagination.