#MaxMustermann.sepa-error

1 messages · Page 1 of 1 (latest)

visual nexus
#

Hey, can you share the ID of the Payment Intent?

clever wing
#

pi_3JwPH8BZP4atcfhr0gNFlsZ6

#

Do you have any idea?

visual nexus
#

Looking now

#

I'd expect a different status following that error you mentioned

clever wing
#

When I try to submit my Order Form with stripe elements sepa field I will get this error

#

This is my code

#

form.onsubmit = function(e) {
e.preventDefault();
stripe.confirmSepaDebitPayment(
'{{ $paymentIntent->client_secret }}',
{
payment_method: {
sepa_debit: iban,
billing_details: {
name: customerName,
email: '{{ auth()->user()->email }}'
},
},
}
)
.then(function(result) {
if(result.error) {
//alert(result.error.message);
document.querySelector('#stripe-error').innerText = result.error.message;
document.querySelector('#app').vue.stripePaymentError = true;
document.querySelector('#app').vue.paymentFormSubmitted = false;
} else {
document.getElementById('payment-method').value = result.paymentIntent.payment_method;
form.submit();
}
});
};

#

Oh sorry
I just noticed the error

#

It was a validation error on my side

#

😄

visual nexus
#

Oops! Glad to hear you're unblocked!

clever wing
#

Thanks for your help anyway!

visual nexus
#

Np!