gpt4 book ai didi

javascript - Stripe : How to attach a debit-card for payouts

转载 作者:太空宇宙 更新时间:2023-11-03 22:56:48 25 4
gpt4 key购买 nike

我花了两天时间仔细研究了 stripe 文档,但我找不到如何将卡添加到 stripe 中的“帐户”。

问。如何将用于付款的借记卡附加到 stripe.accounts.create

stripe.accounts.create({
type: 'standard',
business_type: 'individual',
default_currency:'USD',
country: 'US',
email: 'bob@example.com',
requested_capabilities: [ 'transfers' ],

// here ?

}).then(acc => {

// or maybe ?

}).catch(console.error)

此外,如果能提供有关如何选择付款方式的示例,我们将不胜感激。

感谢您的任何意见

最佳答案

在您的 counts.create() fn 中,添加属性“external_account”

例如


stripe.accounts.create({
country: 'US',
default_currency:'USD',
external_account:card_token,
type: 'custom',
requested_capabilities: ['card_payments', 'transfers'],
})
.then(acc => {

请注意,您可能需要将类型更改为“自定义”,并且无法使用 payment_method,请参阅 Create a card token

关于javascript - Stripe : How to attach a debit-card for payouts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59899169/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com