#Pil0t1
1 messages · Page 1 of 1 (latest)
Hello 👋
Is the interval different as well or is the charge occurring on a set interval, like every 30 days or so? If its the latter than you may want to look into building a subscription based integration
i.e. Subscriptions do support usage-based model if that's what decides the amount that they pay
https://stripe.com/docs/billing/subscriptions/usage-based
no it's different every time
Ah I see. In that case, you can save a payment method either using a SetupIntent or PaymentIntent with setup_future_usage (off-session) and create off-session PaymentIntents to charge the payment method
https://stripe.com/docs/payments/save-and-reuse
https://stripe.com/docs/payments/save-during-payment
Would recommend reading through the docs above
thank you
so for a saved payment methods, what happens if the car expires, or reported lost/stolen ?
is payment intent going to work or should I expect an error, it's not clear from docs above
For card expiry, it depends on the issuer. They can choose to allow the transaction to go through. However for stolen cards, you would see an error. In that case, you can use the same flow you followed for the initial payment method collection and collect a new PaymentMethod