#Morio
1 messages · Page 1 of 1 (latest)
So you want to process MIT off-session recurring payments outside of our Subscriptions API?
yes
We can't move the subscriptions out of our existing backend and we would like to avoid syncing subscriptions between stripe and our backend
Sure, that's possible. You'd just need to ensure that the collected payment details were correctly saved/setup for such future payments. See: https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=checkout#save-payment-method-details
In particular, note the payment_intent_data[setup_future_usage] parameter
You'd then be able to use the saved Payment Method to initiate the recurring payments off-session via the API: https://stripe.com/docs/payments/save-and-reuse?platform=web#charge-saved-payment-method
Thank you very much ! thats great