#MrDiggz-subscription

1 messages · Page 1 of 1 (latest)

winter cradle
#

Hi there!

#

Can you clarify what you meant buy this:

only collect a payment when they manually action it from within the Stripe dashboard
So the customer shouldn't be charged immediately for the subscription? And the subscription should actually start only when the merchant manually action it?

polar totem
winter cradle
#

Got it! No that won't possible with the standard integration, but that should be possible to do with some work. I see a few options:

#

Option 1:

  • Create a Checkout Session in setup mode, to collect payment information without creating any charges
  • Then later, when the merchant wants to actually create the subscription and charge the customer, they call this https://stripe.com/docs/api/subscriptions/create and pass the PaymentMethod that was saved at the previous step
#

Option 2:

  • Create a Checkout Session in subscription mode, but add a long free trial to it so the customer won't be charged
  • Then later either cancel the subscription, or update the duration of the free trial so it start charging the customer