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