#MidnighttFoxx
1 messages · Page 1 of 1 (latest)
You can see the conversion rate that you got on the balance transaction on your backend. So you could get that value there and pass it to your RN frontend and display it there 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.
So this would be similar to looking at the fee on a payout, but you would look at that exchange_rate field on the BalanceTransaction instead of the fee field https://stripe.com/docs/expand/use-cases#stripe-fee-for-payment
so would this allow me to get the information in this screenshot?
I believe so, or at least you would be able to calculate the pre-conversion amounts
i actually want the post conversion amounts
Actually it sounds like that would be the amount that is on the balance transaction here:
The exchange rate used, if applicable, for this transaction. Specifically, if money was converted from currency A to currency B, then the amount in currency A, times exchange_rate, would be the amount in currency B. For example, suppose you charged a customer 10.00 EUR. Then the PaymentIntent’s amount would be 1000 and currency would be eur. Suppose this was converted into 12.34 USD in your Stripe account. Then the BalanceTransaction’s amount would be 1234, currency would be usd, and exchange_rate would be 1.234.
oh perfect thank you!