#colonelcool_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/1366826726302154854
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there!
hello!
To put it succinctly, your understanding is correct. You as a platform might transfer funds to your connected account's balance, and if you are using manual payouts you might directly create Payouts on their account, but those are two separate things, as you've intuited.
Is there an embedded component that we can use to create transfers, or is that something we'll have to handle on the API side?
Embedded components are generally for the connected accounts to interact with and the creation of Transfers is handled by the platform. This would be something like the connected account requesting a Transfer, I think. I doubt it, but let me look
That makes sense, I think we had a misconception of what the embedded components are for
for clarity, here's what we're trying to build:
we want an internal admin page where a user can look at a list of connected accounts and pay them the commissions we owe them (this would be a transfer it sounds like)
Are you collecting payments on Stripe or just planning to fund your account balance and then use Connect to move money to your clients?
I think for the time being we're just planning on funding our account and then moving money to the connected accounts
we don't really collect payments at all, we invoice our vendors and then pass that money on as commissions minus a fee to our platform
Yeah, Embedded Components are meant to be used to create a dashboard for the connected accounts - they're primarily for doing things that the Stripe dashboard does, but it allows an amount of whitelabeling / customization
gotcha that makes total sense and I think is where our confusion was arising
so for instance we have an embedded component on the account page that allows users to input their info/bank account information
Yeah, I think you just want to build a dashboard that calls an API that then calls Stripe's APIs
that seems like the correct usage of an embedded component
Exactly
perfect so what we should build is a dashboard that calls an internal API with the relevant details, and then our internal API logic can call the Stripe API to create a transfer
is it possible to create transfers through our own stripe dashboard?
or do we have to do it via API?