I'm using the PHP library and doing a
$filters = array(
"id"=>null,
"site_id"=>null,
"external_reference"=>null,
"range" => "date_created",
"begin_date" => "NOW-1MONTH", //2017-07-01T00:00:00Z
"end_date" => "NOW", //NOW
//"status" => "approved",
//"operation_type" => "regular_payment"
);
$searchResult = $mp->search_payment($filters, 0 , 1000);
The payments do not reach a thousand and does not include some correct payments that were made 10 days ago but if it brings much older Does anyone think it can be? Thanks!