#sintonz-net amounts
1 messages · Page 1 of 1 (latest)
Have you tried looking for this so far and run in to issues?
i don't see anything in the subscription object for fee. invoice i see total, tax?
disputes and refunds i see nothing
brb
back
balance transactions object?
@primal jackal yes the BT object has all information about money movement including our fee if any so you look at the Charge or the Refund object and they both have a balance_transaction property that you can expand (https://stripe.com/docs/expand) to look at the fee for example
ooh ok so i would have to do the expand on the child refund object listing?
stripe.Refund.list(expand=['balance_transaction']).auto_paging_iter() ?
you want expand=['data.balance_transaction'] because it's a list endpoint
oh ok