我一直试图在条带中获取我的连接帐户的余额,但每当我进行API调用时,它都会返回平台的帐户余额而不是连接帐户余额。我在测试模式下这样做。
const balance = await stripe.balance.retrieve({ stripe_account: host.stripeAccountId, });
这里,“主机”具有与公司平台帐户链接的连接帐户。
w8f9ii691#
应该是stripeAccount: 'acct_123'而不是stripe_account。参见API ref documentation示例。
stripeAccount: 'acct_123'
stripe_account
1条答案
按热度按时间w8f9ii691#
应该是
stripeAccount: 'acct_123'
而不是stripe_account
。参见API ref documentation示例。