#maxv9161_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1288096623062159452
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
That works for a Setup Intent when saving a BACS payment method
Otherwise you need to use Payment Element for a payment
Really? there is no way to do it with payment method? since we dont use Payment Elements at all
There is not
got it.
So only Payment Elements or checkout
Yes
Hmm is there an API to send you the data?
For example if I collect that data myself is thre API for that?
https://docs.stripe.com/api/payment_intents/create#create_payment_intent-payment_method_data-bacs_debit
or
https://docs.stripe.com/api/payment_methods/create#create_payment_method-bacs_debit
Not really recommended though as they don't handle the required mandate setup
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Ah hmm ok, and then I will have to confirm in back end with paymentIntent.confirm?
Another question, https://docs.stripe.com/js/payment_intents/collect_bank_account_for_payment wont work for collecting data?
if the paymet method is bacs_debit_payments ?
hi there!
Hello Soma
Ah hmm ok, and then I will have to confirm in back end with paymentIntent.confirm?
you can either setconfirm: truewhile creating the PaymentIntent, or call the confirm endpoint later.
Can I use https://docs.stripe.com/js/payment_intents/confirm_payment for confirmation? after the payment method is attached?
if the PaymentIntent has a requires_confirmation or requires_action status, then yes.
Soma i am just filling you in with what im trying to do, I want to add integration for BACs debit payments to our app without using Stripes checkout or Payment Elements
then yes I recommend trying https://docs.stripe.com/api/payment_intents/create#create_payment_intent-payment_method_data-bacs_debit or https://docs.stripe.com/api/payment_methods/create#create_payment_method-bacs_debit as mentioned before.
I'm not very fmiliar with this flow, but it looks like this is specifically for ACH payments.
ok got it,
Thank you!