reference
: no special characters are allowed. Trying to use special characters here will result in a 400 Bad Request
error.
Allowed characters are letters, numbers, hyphen, underscore, dot and space. Here’s the list in the regular expression format : A-Za-z0-9\-_.
.
HTTP 429 Too Many Requests
to that merchant ID.
from
: identifies the starting date of the transfers retrieval range, the value here is 2023-01-01T00:00:00.000Z
to
: identifies the ending date of the transfers retrieval range, the value here is 2023-01-01T12:00:00.000Z
page
and perPage
: To control navigation through the result pages.created_at
, descending.Content-Range
header to inform of the total number of results, and the header value is in the format 0-99/2453
.
In this particular case, this header indicates that the API returned the first 100 results out of a total of 2453 - so there are 25 pages of 100 results to fetch to retrieve all transfers corresponding to the initial filter.
A good advice is to set date filters in the initial request, so the number of results remains the same while pagination is running (except when to
is set to a date in the future).