#softnet-ideal-sepa
1 messages · Page 1 of 1 (latest)
@dense roost :question: Have a non-technical question, account issue, or need one-on-one support? We wish we could help, but this community is focused on developers and technical discussions. Our support team will be able to assist you better than we can: https://support.stripe.com/contact
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Hi
I created new payment intent in the backend for ideal and I confirmed the payment method via frontend
when I checked the payment intent, generated_sepa_debit is null
@dense roost hello! Can you provide more actionable details like an exact PaymentIntent id, how you created it, share the exact code, etc.?
softnet-ideal-sepa
pi_3Nf4l3DEdWHgNJda0agBvecu
form.addEventListener('submit', (event) => {
event.preventDefault();
stripe.confirmIdealPayment(clientSecret.value,
{
payment_method: {
ideal: idealBank,
setup_future_usage : "off_session",
billing_details: {
name: accountholderName.value,
email: email.value,
},
},
return_url: 'https://example.com/checkout/complete',
}
);
});
- I created new customer with email id
- Created payment method with type ideal
- create payment intent with the new customer id and payment method id
- from the frontend I confirmed the ideal payment using the client secreat and authorised the payment
looking
the problem is on PaymentIntent creation. That's where you need to set setup_future_usage: 'off_session'