#KarlS- balance-transaction

1 messages ยท Page 1 of 1 (latest)

tiny belfry
#

Hi there ๐Ÿ‘‹
Could you elaborate a bit on what you're trying to accomplish?

ocean forge
#

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.

tiny belfry
#

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

ocean forge
#

OK.. sounds like I have to do this per intent.

#

"one at a time"