Pagination

Fintava supports fetch of all top-level API resources like Customers, Cards, Authorizations, Transactions, etc. These endpoints share a common structure, taking at least these two parameters: page and limit. By default, the page is set to 0 and a limit of 25. You can fetch a maximum of 100 records at once. The resulting response will always include a pagination object with the total records count, the number of pages, the current page, and the limit set.

{
data:  [
{ ......... }
{ ......... }
{ ......... }
  ],
  "meta": {
    "page": "1",
    "take": "10",
    "itemCount": 363,
    "pageCount": 37,
    "hasPreviousPage": false,
    "hasNextPage": true
  }
}