#KarlS- balance-transaction
1 messages ยท Page 1 of 1 (latest)
Yes. Given a PaymentIntent object I need to resolve the transaction id.
Specifically the balance transaction id.
There are 2 apps in play here: our old app, which captures the txn id and token id.
I need to cross-reference payments and/or balances I grab from stripe with these records.
Gotcha, from the Payment Intent you can find the related Charge object:
https://stripe.com/docs/api/payment_intents/object#payment_intent_object-charges-data
and then the Charge object has a field pointing to it's related Balance Transaction:
https://stripe.com/docs/api/charges/object#charge_object-balance_transaction
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.