条纹连接新手没有国家/地区选项?



尝试在我的网站整合条纹连接。但是当我进入stripe connect网站并为账户生成一个注册链接时,它只显示美国作为一个选项,即使我在仪表板中切换了每个国家?

const account = await stripe.accounts.create({
type: 'express',
business_type: 'individual',
business_profile: { url: `https://dialect.so/@${username}` },
email,
capabilities: {
transfers: { requested: true },
card_payments: { requested: true }
}
})

由于新创建帐户的默认国家与平台相同,您在为您的海外用户创建帐户时需要指定country

如果您希望连接的帐户能够在Connect Onboarding中选择国家,则不要在创建时设置帐户的功能。

const account = await stripe.accounts.create({
type: 'express',
business_type: 'individual',
business_profile: { url: `https://dialect.so/@${username}` },
email
})

如果平台未明确为该帐户设置能力,则Stripe将根据https://dashboard.stripe.com/settings/connect/express中设置的国家配置为该帐户设置能力。

最新更新