#mibrahim15

1 messages · Page 1 of 1 (latest)

sturdy fjordBOT
#

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.

calm dagger
#

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?

sturdy fjordBOT
dry zodiac
#

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

calm dagger
#

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

dry zodiac
#

I am getting 1400 records in pagination which I think are all pages?

#

py_ never appeared even once

calm dagger
#

Can you share an example list request where you'd expect to find a specific charge and don't see it?

dry zodiac
#

$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

topaz solar
#

Hi there