Paged results

All endpoints that retrieve the full record will automatically be a paged response

Our API is limited to return 100 records at a time per list. Results return a paging object as example:

..
"Paging": 
{
  "CurrentPage": 11,
  "Pages": 36,
  "Results": 100,
  "TotalCount": 3554,
  "NextPage": "https://api-front.upodi.io/customers/?page=12",
  "PreviousPage": "https://api-front.upodi.io/customers/?page=10"
}

Use the page query parameter to cycle the pages or use the autogenerated links nextPage or previousPage.

curl --location --request GET 'https://api-front.upodi.io/Customers/?page=30' \
--header 'Authorization: Bearer {APIKey}' \
--header 'Content-Type: application/json' \
--header 'x-version: nxt'