sometimes, our clients buying some product more than 5 quantity at once. case 1> client performed checkout process with 3 items (quantity of each item is more than 6, total count is bigger than 18) when using paypal transaction search rest api, paypal doesn't return all of items array, and paypal only said it's quantity is 1. expected result: "cart_info": { "item_details": [ { "item_quantity": "6", ... }, { "item_quantity": "6", ... }, { "item_quantity": "6", ... }, // there is 3 items of array // and each of quantity property is more than 6, ] }, real result: "cart_info": { "item_details": [ { "item_quantity": "1", // it should be bigger than 1, in this example answer is 6 ... "total_item_amount": { "currency_code": "USD", "value": "153.92" // amount is same as sum of all item's price }, "invoice_number": "XXXXXX" } ] // array only has one item. not good. } is this response maded by design ? i cannot find any of document of this limitation if this is done by design, how can i get all of items from transaction ? regards.
... View more