#henry-thornton_best-practices
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1296140318009462795
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! Yes, this is possible. In the beginning, when your users provide their payment details, do you also charge them some amount at that point, or do you only charge them later?
On registration to our service, when payment details are provided users will be given N free weeks of use. Thereafter, the users will be charged a variable amount each week.
Okay, so this is the guide you want: https://docs.stripe.com/payments/save-and-reuse
Basically you'll use a Setup Intent initially to collect payment details and set them up for future use. Later, you'll create Payment Intents with the variable amounts and confirm them off-session.
Thank-you ๐ Will come back with questions if I get stuck ...