#cheesus2000
1 messages · Page 1 of 1 (latest)
Hi there, Checkout page will only pre-fill previously used card payment method.
What's the recommended flow for allowing users to re-use a stored bank debit?
If you have already saved a payment method, you can create a off-session paymentIntent to charge a customer without them visiting your webpage.
And if I want to do it on-session (specifically I want the user to select their payment method or have the opportunity to enter a new one) there's not really any way?
The alternative is Link. https://stripe.com/docs/payments/link But Link doesn't support ACSS yet.
Bummer. Is ACSS on the roadmap for Link? Or for Checkout?
Or alternatively, if I'm going to do an off_session payment, is there a way I can still use Stripe::Price, Stripe::TaxRate and line items?
It's definitely in the plan but I don't have the exact timeline to share.
I don't quite get your 2nd question, can you elaborate more?
Currently I'm using Checkout, and I'm putting some "Products" and "TaxRates" in the checkout, and all the math is done automatically.
If I need to support some off_session payments (for stored ACSS) I'm hoping to avoid having to do all the calculations on the server so I stay consistent with Stripe's logic.
Is there a way to do something like this on the server:
checkout = StripeCheckout.new(line_items: [StripeProduct])
checkout.pay_on_the_server("pm_stored_acss")
Or something similar to that?
No, Checkout is for on-session (aka your customer is present), not off-session
Right... is there any other Stripe product that uses Stripe products and taxes? Anything I can build up server side and submit on behalf of the user?
Sure, you can use invoice https://stripe.com/docs/tax/invoicing it supports Stripe Tax as well.
There's an extra charge for that, correct?
I won't be able to answer questions for pricing, please reach out to Stripe support and they'll help you https://support.stripe.com/contact/email
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Other than Link (with no ACSS support) / Checkout (with no stored ACSS support) and Invoicing, is there any way for me to pay server-side with stored ACSS and to get a similar view of a charge showing the items and tax broken out nicely after?