#Mahesh

1 messages · Page 1 of 1 (latest)

normal kestrelBOT
waxen portal
#

Do you mean, just confirm and not charge?

cinder zephyr
#

lets say i create a payment intent const paymentIntent = await stripe.paymentIntents.create({ amount: 1099, currency: 'usd', });

I want to confirm this payment intent using ideal. is it possible without using Elements?

waxen portal
#

Again, are you only wanting to confirm? Or are you wanting to confirm and then charge?

cinder zephyr
#

i want to confirm and charge

waxen portal
#

Ah, so there are a number of ways to do this without using Elements. I would start here: https://stripe.com/docs/payments/giropay/accept-a-payment

You can use Checkout as well as build your own custom payment workflow without elements (though I would not recommend building without Elements, as that is legacy and could be deprecated in the future.

Learn how to accept giropay, a common payment method in Germany.

cinder zephyr