#8llow

1 messages · Page 1 of 1 (latest)

chrome tendonBOT
mint stump
#

Hi 👋 can you elaborate? Each Subscription in Stripe handles their own payments. Are you trying to build your own solution for bundling Subscriptions?

pseudo bloom
#

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

mint stump
#

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.

pseudo bloom
#

Thank you very much. For now, here's what I'm doing:

  1. I create a SetupIntent
  2. I confirm it on the front side
  3. 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

mint stump
#

Any time, always happy to help!

chrome tendonBOT