How to approach Stripe integration when one user sets the amount to charge another user?

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!

You can use connect in stripe.

Think you platform as a market place, where yor doctors are seller and your patients are buyers.

the doctor can add many product (services) which the patient can buy.

So, user connect in stripe, it will let you doctor be serller and create product, and your patient are customer who can buy the product.

1 Like

@Baloshi69 Thank you! I’m looking at Stripe Connect right now and it is just what I needed.