#milan_90064
1 messages · Page 1 of 1 (latest)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
The reconciliation event i think is the signal you're looking for here
I've tried waiting for that event as well and I get the same report. To be clear, this is in the sandbox environment so I don't know if that changes things. But the payout.created, paid, and reconciliation_completed events show up within seconds/minutes of each other.
We'd not know specifics about reports unfortunately.
you're on automatic payouts, correct? You might also be able to just utilize the API to see the charges included in the payout
https://stripe.com/docs/expand/use-cases#charges-in-payout
Interesting. So I guess I can wait for the payout.created and immediately ask the API for balanceTransactions tied to that payout. Then I can crosswalk up to the PaymentIntent. Does that sound about right? And if I do this, does the BalanceTransaction amount and currency use the settlement amount and currency or the one from the original payment intent?
And yes - I'm on automatic
Does that sound about right?
Yes
And if I do this, does the BalanceTransaction amount and currency use the settlement amount and currency or the one from the original payment intent?
Try it out, it uses the one from PaymentIntent since you're retreiving the payout on a platform level.