#andreiut0063_code
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/1404451303610126416
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi, given that the transaction amount gets divided by 3, you'd want to use Separate Charges and Transfers, https://docs.stripe.com/connect/separate-charges-and-transfers
The payment is on your Plaftorm and after the payment succeeds, you make requests to divide the funds up
Basically for an appointment, I'll have 3 Separate Charges (developer, platform, therapist) and when issuing a refund, I'll simply need to refund all 3 of these charges, am I understanding correctly?
No, it is one charge. The end customer will see one charge. You will create two seapare Transfers to the developer, and the therapist. The Platform will issue the refund, https://docs.stripe.com/connect/separate-charges-and-transfers?platform=web&ui=stripe-hosted#issue-refunds which will decrease their balanace. They, will need to reverse the transfer in this case
Okay, my bad, I understand now. Basically just charge the whole sum on the platform + on payment succeeded I'll have a webhook handling the transfers to the developer + therapist thingy. And on refund, I'll just need to reverse the transfers
Makes far more sense, thank you!
Yes