#cheesus2000

1 messages · Page 1 of 1 (latest)

nocturne fableBOT
spring cairn
#

Hi there, Checkout page will only pre-fill previously used card payment method.

native creek
#

What's the recommended flow for allowing users to re-use a stored bank debit?

spring cairn
#

If you have already saved a payment method, you can create a off-session paymentIntent to charge a customer without them visiting your webpage.

native creek
#

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?

spring cairn
native creek
#

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?

spring cairn
#

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?

native creek
#

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?

spring cairn
#

No, Checkout is for on-session (aka your customer is present), not off-session

native creek
#

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?

spring cairn
native creek
#

There's an extra charge for that, correct?

spring cairn
#

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

native creek
#

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?