Muhammad Hameed
Muhammad Hameed

Reputation: 1

Cannot Get Stripe Connect Account Balance

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

Answers (1)

bismarck
bismarck

Reputation: 722

It should be stripeAccount: 'acct_123' not stripe_account. See the API ref documentation for an example.

Upvotes: 0

Related Questions