Simple Store
  • What is Simple Store?
  • Getting Started
    • Portal
      • Environments
      • Configuring Your Store
    • Creating Your First Product
    • QuickBuy
  • Concepts
    • Assets
      • Image Resizing
    • Cart
    • Categories
    • Configuration
    • Collections
    • Customers
    • Inventory
    • Orders
    • Payments
    • Pricing
    • Product
    • Rewards
    • Shipping
    • Specials
  • API
  • Front End Client APIs
  • Backend APIs
  • Pagination
  • Swagger References
Powered by GitBook
On this page

Pagination

Pagination is used in all API endpoints that return a list of results.

Example:

{
    "result": [],
    "pageSize": 10,
    "pageIndex": 0,
    "totalRecordsFound": 0,
    "resultCount": 0,
    "totalPages": 0,
    "queryDurationMilliseconds": 48
}

Each response will contain paging information alongside the results. To change pages or the page size, when making the GET request, append the following Query Parameters ?pageSize=10&pageIndex=1

If no paging parameter are provided, default values are used. pageSize=10&pageIndex=0

PreviousBackend APIsNextSwagger References

Last updated 5 years ago