#Joe Kneeland
1 messages · Page 1 of 1 (latest)
Hi 👋 we aren't too familiar with fee structures in this forum, that is typically something our Support team is more knowledgable about:
https://support.stripe.com/?contact=true
A couple things that come to mind though, is maybe there are also currency conversion fees in your scenario, or possibly tax due on the Stripe fees.
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Thanks @formal iris
it looks like it's because of refunds. any idea how to get all refunds associated with a payout?
Ah, gotcha, good find. You can list all Balance Transactions (payments, fees, transfers, refunds, etc.) associated with a Payout (as long as you're using Automatic Payouts) with this endpoint:
https://stripe.com/docs/api/balance_transactions/list
You can pass the ID of the Payout object into the payout field, and the returned list of results will only be for Balance Transactions that contributed to that Payout.
If there are more than 100 results in those responses, then you can use the auto-pagination functionality built into libraries to make iterating through those results easier:
https://stripe.com/docs/api/pagination/auto