#vishalnag-v_code
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/1319204572572684308
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- vishalnag-v_docs, 5 days ago, 9 messages
https://docs.stripe.com/payments/accept-a-payment-deferred:
This integration path doesn’t support BLIK or pre-authorized debits that use the Automated Clearing Settlement System (ACSS).
Deferred intent flow doesn't support acss_debit
Oh I see.
But here it says it is supported by setup intents:
It is supported if you use standard (non-deferred intent) flow
You mean payment intents?
No.
- Standard flow is to create the Payment Intent / Setup Intent first, then return the client secret to client side to Payment Element to collect payment method
- Deferred intent flow is to collect the payment method in the Payment Element first, then create Payment Intent / Setup Intent later
For ACSS debit, Setup Intent is supported in standard flow: https://docs.stripe.com/payments/save-and-reuse
Feel free to share your question here
when I use Stripe::PaymentMethodConfiguration.list({}, { stripe_account: stripe_account_id }), the response.data returns an array of 2 objects - like 2 different configurations. Which one should I consider?
This is up to your platform. Ideally, the platform should have a dedicated payment method configuration for each connected account if the payment method configuration is different for each connected account
Okay got it. Thanks
Passing { stripe_account: stripe_account_id } will render config of only that account yes?
Yes, that's right!
Awesome. Thanks a lot for your time!