#dhruv8901
1 messages · Page 1 of 1 (latest)
confirm is whether to confirm the payment intent immediately. Setting to false doesn't hold the amount and Stripe doesn't receive the confirmation from your end that the payment should be charged
If you wish to hold the payment, capture_method should be used instead: https://stripe.com/docs/api/payment_intents/create#create_payment_intent-capture_method
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You may refer to the guide here: https://stripe.com/docs/payments/place-a-hold-on-a-payment-method
means in this payment intent payment is not deduct from users account when confirm is false?? am i right?
@ebon elk
Thanks for the waiting! Discord is very busy now
means in this payment intent payment is not deduct from users account when confirm is false?? am i right?
The fund is neither held/authorised nor deducted from user's payment method ifconfirmis set to false
i want to set that when i create payment intent at that money is deduct from user and hold the payment and when admin approve at that money transfer to the stripe account so which method is suitable? @ebon elk
@ebon elk
This flow should work for you: https://stripe.com/docs/payments/place-a-hold-on-a-payment-method
Holding/authorising the funds in customer's account and capture later once your admin approves