#MaxMustermann.sepa-error
1 messages · Page 1 of 1 (latest)
Looking now
Hmm, that PI has a status of processing which is expected with delayed payment methods like SEPA: https://stripe.com/docs/payments/payment-methods#payment-notification
I'd expect a different status following that error you mentioned
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
😄
Oops! Glad to hear you're unblocked!
Thanks for your help anyway!
Np!