#vova_api
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/1267765359759327273
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi, let me help you with this.
Yes, Stripe Connect is designed for handling payouts.
For the payments themselves, do you I am not sure I understand. Are you talking about scheduling appointments? Or recurring payments?
Stripe Billing can help you take recurrent payments with Subscriptions, e.g. every week/month, for a specified amount, but you will need to take care of scheduling appointments yourself.
Every appointment is a lesson with tutor and client has to pay for this lesson.
But in addition to a single lesson, the client can also book a lesson with a specific tutor for a certain period. For example, it can be every Monday, Wednesday, and Friday. The client also needs to be able to cancel one lesson within this period without canceling all subsequent lessons. Therefore, as I understand, the Subscription API is not suitable for me, and this needs to be implemented using multiple PaymentIntents.
And my question is this possible for PaymentIntent to handle payment automatically without client confirmation for every transaction? If it's not possible for 3DS cards, how can I ask to confirm payment using email?
Got it. Basically, you want to collect a PaymentMethod once and then charge it when needed, without involving the customer, right?
Yes
You can use SetupIntents for this: https://docs.stripe.com/payments/save-and-reuse?platform=web&ui=elements
๐ taking over for my colleague. Let me know if there's any follow-up Qs I can answer!