Stripe - Payment Intent - Missing Option

Hello Everyone!

On PaymentIntent action, on stripe API, in the payment_method_type , the option au_becs_debit is missing!

The Stripe Docs shows that this option exists:

const paymentIntent = await stripe.paymentIntents.create({
  amount: 1099,
  currency: 'aud',
  setup_future_usage: 'off_session',
  customer: customer.id,
  payment_method_types: ['au_becs_debit'],
});
const clientSecret = paymentIntent.client_secret;

This link

Best

Fixed in Wappler 6.4.1

This topic was automatically closed after 46 hours. New replies are no longer allowed.