#sean_trustap
1 messages · Page 1 of 1 (latest)
Also, I can see the converted amount in the user's balance history (via /balance_transactions), but I don't see an obvious way of collating this with the original transfer.
In the balance transaction you should see an exchange rate:
https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-exchange_rate
You expand the balance_transaction of the transfer:
https://stripe.com/docs/api/transfers/object#transfer_object-balance_transaction
Thanks, but the exchange rate is set to null for some reason, and the balance_transaction of the transfer refers to the USD balance, not the RSD balance. However, from browsing the responses it looks like I can get a separate balance transaction from the destination_payment, and that seems to include the information I need. Thanks 👍
yes or you can use the desintation_payment:
https://stripe.com/docs/api/transfers/object#transfer_object-destination_payment
Good catch!