Large data sets
HTTP GET Requests
Several resources allow users to request potentially large data sets. To accommodate these requests, pagination is enforced via the two query-parameters pageSize
and pageNumber
. Both must be larger than zero and have a resource specific default value if not provided.
Paginated responses have pageInfo
object withpageSize
and currentPage
. The latter two are equal to the request pageSize
and pageNumber
provided in the query parameters.
There is also rowCount
(int32 | null) described as "Total of records" in V1-Payments Singles endpoint. Please add more info about detecting last page.
HTTP POST Requests
Some resources allow for users to send requests for bulk creation with potentially large data sets. There is a maximum size limit of 20MB and in cases where the limit is breached 413 - Payload too large
is returned.
Updated 6 months ago