#just-john_docs
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/1308203876230627329
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
For reference these are the options I chose based on the original instructions,
but after reading more I am thinking that API onboarding may be needed, which changes the other options. Also not sure if I need "destination" to take a cut of the payments or if "direct" will suffice.
Hi, let me help you with this.
create Stripe accounts for buyers
Are the buyers also the sellers? You only need Stripe Connect if you're planning to pay out funds to third parties.
Why you don't want to use hosted onboarding exactly?
You will still be able to create accounts via API.
No, this is a rental system so we have 2 types: Renters and Owners.
Regardless of the approach, your Platform will be able to take an application fee.
Renters only pay, and owners (sellers) only recieve.
If I understand correctly I would like to do hosted for sellers and API for buyers, but it does not appear that is an option.
Why do buyers need a Stripe account?
Because payments are set up as subscriptions.
(And subscriptions need an account to save the payment info)
This doesn't require a Stripe account/Connect.
Okay cool.
That's not correct. You can just create a Customer object. You can read more about Subscriptions here: https://docs.stripe.com/billing/subscriptions/build-subscriptions
So how do I create buyer accounts programatically? The docs linked me to Stripe Connect.
I assumed that much, but stripe.subscriptionSchedules.create wanted a customerId, so I assumed I needed to create accounts for them.
It looks like the customer object serves that purpose instead though.
Ohhh, from your link I found the docs I was originally looking for: https://docs.stripe.com/api/customers/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I searched for that a bunch of times but the result I kept getting instead was for a similar one that used Stripe Connect.
Okay cool. So that endpoint is the answer to my main question.
I can just ask later if it's not clear how to take a cut of the payments or onboard the sellers.
Sure
Okay thanks!