Reputation: 1
I have been trying to get balance for my connected accounts in stripe but whenever I make a api call it returns me platform's account balance instead of connected account balance. I am doing this in test mode.
const balance = await stripe.balance.retrieve({
stripe_account: host.stripeAccountId,
});
here "host" has a connected account linked with company's platform account.
Upvotes: 0
Views: 125
Reputation: 722
It should be stripeAccount: 'acct_123'
not stripe_account
. See the API ref documentation for an example.
Upvotes: 0