#oliveR
1 messages ยท Page 1 of 1 (latest)
๐ happy to help
Do they get sent a payment link automatically
if the collection_method ischarge_automaticallythen we don't send the invoice to the customer for payment. You need to collect the payment method if there hasn't been any collected ahead of time
So I assume I could follow this:
https://stripe.com/docs/payments/save-and-reuse
Then add some metadata to that to start the subscription from the webhook once the user finishes the setup?
not really
the best way is to follow this guide https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements
Ah I see. And the employee who would be "starting" the subscription for the customer wouldn't actually start a subscription, but simply trigger an email sent to the customer that has a link to start the checkout session?
you don't have a website?
I'm not sure I fully grasp your use case, would you mind explaining your business model?
So we are a massage service. But we also offer a subscription model where, for a monthly payment you get X amount of massage "credits" a month.
The idea here is that people who come for a massage the first time, could be sold a subscription after the initial massage. We've sold a lot of subscriptions to customers after the initial massage, but we've noticed that if the person is asked to start a subscription through our website, they are less likely to complete it when they get home. To improve conversion, we would like to test starting the subscription on the spot, through a simple SMS or email onetime-link, so that the customer can start the subscription on the spot.
Asking the customer to go through our website adds a tad of complexity, since they would have to log in etc. Hope this makes sense ๐
in that case you could take a look at Payment Links
I understand that a subscription can be set to invoice --> payment link to email. But my concern is that after the user inputs the payment details initially, the subscription would then transition to automatic collection. I don't know if this is possible with Payment Links?
yes once the Payment Link is sent the subscription will be created with a charge_automatically collection method
Ah nice. I'll check this out. Thanks a lot !