Pagination
For endpoints that return lists (such as events or sales records), the Sales Tracker API implements pagination to manage large result sets and improve performance.
Pagination Parameters
page: The page number to retrieve. If not provided, the default value is 1.
limit: The number of records to return per page. The default is 10, with a maximum value of 100.
How It Works
The API calculates the offset for the SQL query using the formula:
For example, if you request page=3
and limit=10
, the API will retrieve records starting at offset 20 (i.e., the 21st record) and return 10 records.
Response Format
Paginated responses include the following metadata:
total_count: The total number of records available.
page: The current page number.
limit: The number of records returned per page.
results: An array containing the records for the requested page.
Example Response
Clients can adjust the page
and limit
parameters to navigate through the full dataset.
Last updated
Was this helpful?