#DW
1 messages · Page 1 of 1 (latest)
hello! let me recall one sec
to confirm - you're using Payment Element right? (Elements is the entire library, Payment Element is the specific Element that bundles with it ACH and other PaymentMethods)
correct
my understanding is that it depends. Most users should see the ability to connect to their bank account right from the Payment Element without needing to microdeposit verify. Others might need microdeposits: https://stripe.com/docs/payments/ach-debit/accept-a-payment?platform=web&ui=checkout#enable-ach-direct-debit-as-a-payment-method
and that customers can pick to microdeposit verify? so it is an option up to them?
can you share how you're creating the PaymentIntent? an example PaymentIntent where this happened would help
Sure, one more question. For the "confirm" option on the PaymentIntent, if I do not set "confirm" to "true" will it require manual action for my server to initiate the ACH transaction?
Hello 👋
Stepping in here
Hello
if by
my server to initiate the ACH transaction?
you mean to confirm/complete the transaction, then yes
The PaymentIntent would eventually go in requires_confirmation status
If I have confirm set to true, it will auto-confirm?
I do have some transactions that seem to be in the requires_confirmation status, how do I complete them?
Either you set confirm: true on PaymentIntent creation OR you call the confirm PaymentIntent API manually
https://stripe.com/docs/api/payment_intents/confirm
Above assumes you already have a PaymentMethod that you're passing to the PaymentIntent
thank you