nishimura.clubnishimura.club

Node.js Stripe Default PaymentMethod 保存

作成日
2021-10-05
更新日
2021-10-05

顧客の更新customers.updateのオプションで、invoice_settings.default_payment_methodPaymentMethod.idを渡してあげると、デフォルトのお支払い方法が設定される。

const customer = await stripe.customers.update('cus_xxx', { invoice_settings: { default_payment_method: 'pm_xxx', }, });

支払いの詳細を更新する

Stripe API reference – PaymentMethods

Related

Tags

Stripe
NodeJS

Share