I am using Stripe. I process credit card payments on behalf of other Stripe accounts using Connect.
Now, I want to fetch credit card processing fees. There is this API endpoint for that: https://stripe.com/docs/api/balance_transactions/list
\Stripe\BalanceTransaction::all(['source'=> "ch_xxxxxx"]);
It works fine for my own Stripe account. However it returns an empty list for any charge made to Connected accounts.
How do I get those credit card charges via the API?