#ibgoldbergs
1 messages · Page 1 of 1 (latest)
on behalf of doesn't really make sense in this request, since you (the platform) are debitting the connected account balance. Why are you trying to set that?
Arguably this should fail as a 4xx error, but it looks like it gets ignored instead
Trying to build a report to show all the charges we made that were due to debiting a connected account
How does that relate to setting OBO on the account debit?
because it allows us to pull in the name of the connected account
if there is a better way, i'd love to know
What do you mean by that?
The account details are available in the source of the charge here:
https://dashboard.stripe.com/logs/req_MtMj9tRjwszkLk
maybe lets drop OBO, and move onto the problem i'm trying to solve. Want to generate a report of charges where we debited the connected account
can we do this via sigma?
select
connected_accounts.id,
connected_accounts.business_name,
charges.id
from charges
left join connected_accounts on connected_accounts.id = charges.source_id
This doesn't seem right in Sigma