#mibrahim15
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- mibrahim15, 2 days ago, 45 messages
- mibrahim-paymentintents-list, 5 days ago, 17 messages
- mibrahim15, 6 days ago, 9 messages
- MIbrahim, 6 days ago, 23 messages
If you retrieve those IDs directly, are you able to get them?
Assuming you can, have you tried making a narrower list request around the creation timestamp of one of those charges? ie, just a couple seconds before and after creation?
yes
I can get them if I directly retrieve them
as well as getting that charge if I fetch PaymentIntents list
I didn't tried narrower list request however, but I was previously suggested to try broader request
Sure, but it seems like the issue you're having is many results over many pages and you might not be finding these examples in the results
I am getting 1400 records in pagination which I think are all pages?
py_ never appeared even once
Can you share an example list request where you'd expect to find a specific charge and don't see it?
$donationsArray = \Stripe\Charge::all([
'created' => [
'gte' => $donations_from_date_start,
'lte' => $donations_from_date_end,
],
'expand' => ['data.balance_transaction']
]);
foreach ($donationsArray->autoPagingIterator() as $donation) {
array_push($donations->data, $donation);
}
Date range right now I am looking for is
2023-07-26 00:00:00
2023-07-26 23:59:59
OR
1690329600
1690415999
Hi there