#x.auth-charge
1 messages · Page 1 of 1 (latest)
yay
Hey. How are you currently integrating with Stripe?
i havent made one yet
im just finding out of to do it so i can make it
like how do i make it to where customers add there card so i know they are not a robot
it doesnt charge them it just places a 1$ hold
There's no real 'no code' solution for authorisation charges like that. But you should start here: https://stripe.com/docs/payments/capture-later
It's also possible with Checkout
That's the parameter yes
stripe.PaymentIntent.capture
so i replace pi with my public key?
This is the method you'd use if you wanted to capture the $1 hold
const paymentIntent = await stripe.paymentIntents.create({
amount: 1099,
currency: 'cad',
payment_method_types: ['card'],
capture_method: 'manual',
});
capture_method
No, it'd be 100. Amount is an integer in the lowest denomination for that currency – so for USD cents