Hello.
I'm using this API call (latest version of the API):
https://api.stripe.com/v1/transfers?count=10&include[]=total_count&expand[]=data.balance_transactionIt returns the transfers and the balance_transaction, but the fee value is always zero.
For example, I have a transfer that contains 2 charges. Gross is for example 127.90USD, Fees are -4.31USD, so the Total is 123.59USD.
I can see those data if I log on the Dashbord.
When I use the API I get:
data:
- id = tr_xxxxxxxx
- amount = 12359
- currency = usd
- balance_transaction:
--- amount = -12359
--- currencty = usd
--- fee = 0
--- fee_details = [0] (empty array)
And I have fee = 0 for all the transfers!
Why?
I can I get back the fees?