#8llow
1 messages · Page 1 of 1 (latest)
Hi 👋 can you elaborate? Each Subscription in Stripe handles their own payments. Are you trying to build your own solution for bundling Subscriptions?
Thank you for your responsiveness. Indeed I would like to implement the creation of several distinct subscriptions with a single payment, but several invoices for each subscription.
This is for a Magento 2 extension that would allow the addition of multiple subscriptions to the cart
That isn't easily achieved, each Subscription generates its own Invoices which generate their own Payment Intents for handling payments. You would need to suppress a substantial amount of default behavior and then build your own custom flow for accepting payments and updating other objects accordingly.
Thank you very much. For now, here's what I'm doing:
- I create a SetupIntent
- I confirm it on the front side
- if the setupIntent is well created I create the subscriptions in off_session
Thank you I wanted to see if there was an easier way, but you I see that it is not so simple
Any time, always happy to help!