I’m building an online therapy platform for a client and I’m setting up the Stripe integration to collect payments, but I’m not sure how to approach the integration considering the following:
- The platform has a User type Doctor and a User type Patient.
- The Doctor can create a Service and specify its Name and Price.
- The Patient can schedule an online session with a Doctor by paying the amount defined on that given Service.
- All the payments go to the platform’s Stripe account and they pay the Doctors at the end of each month (external process).
Any ideas / recommendations / best practices to go about this?
Thanks in advance!