#zen-payments
1 messages ยท Page 1 of 1 (latest)
Hello! Are you asking do we provide the exchange rate that we (stripe) used for a payment?
I programatically (api/sdk) need the fields that are marked in red thats associated with a given payment intent
I would need the exchange rate in the bare minimum
Gotcha - so I believe we provide this information on the Balance Transaction tied to the Payment Intent (https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-exchange_rate)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I saw that but wasn't able to find good way to link between balance transactions and payment intents
If you retrieve the Payment Intent and expand charges.data.balance_transaction that should give you the balance transactions in the same response
ahh I see the balance tx id within the charge ๐ thank you1