#travestisevicilez
1 messages · Page 1 of 1 (latest)
hi, when you create the Subscription there should be a pending_setup_intent and you can confirm that on the frontend with confirmSetup to collect/validate payment info.
This is how everything is set up, but the problem is that, since the subscription does not require any amount of money for the first 7 days, stripe creates the subscription as soon as this pending_setup_intent is created
that's true yes
if you don't want that an option is to create a SetupIntent directly and use that (https://stripe.com/docs/payments/save-and-reuse?platform=web&ui=elements), and then create the Subscription in the backend only after it succeeds
Okay thank you!