#Eran Mizrahi
1 messages ยท Page 1 of 1 (latest)
What kind of existing Stripe account do you have? What kind of Connect platform are you building?
- what do u mean?
- donate through my website, and transfer this money to the other platform-connected account
Is it a standard Stripe account (which can be connected to multiple platforms)? https://stripe.com/docs/connect/accounts
The easiest way to find out would be just to try and onboard it to the new platform
i dont know how is it set on the other platform.
my platform i think it will be standard or express
how do i connect the same account to my platform
the only data i have from the other platform is
my account id: acct_XXXX
- is it option to start do a connect integration on test mode, before paying and having it on prod ?
You would use Account Links: https://stripe.com/docs/connect/standard-accounts
Yep, of course. You'd use test data (here: https://stripe.com/docs/connect/testing) to onboard test accounts
ok thank
so I just want to verify I understand:
the only data I need from the other platform is the ACCT_XXX ID,
- now I need to implement Connect with a standard account
- after that, I will be able to add/register this connected account from the first step, (only with the id above)into my new platform as a connected/sub-account.
- after setting up, a user will be able to donate through my website, as part of the payment I will be able to add this connected account
and once the user pays the money will move automatically to the connected account - this connected account, which also exists on the other platform will be updated with the new balance?
is this process sound resonable?
edited above ๐
There's a lot of questions there, let's start with onboarding:
the only data I need from the other platform is the ACCT_XXX ID
If you have a pre-existing Stripe account then you'd create an Account Link for the hosted onboarding using thatacct_xxxID yes
As for payments and flow of funds, it all depends on the type of accounts you're connecting. If you're using standard accounts, then you'll process direct charges: https://stripe.com/docs/connect/direct-charges
It's important to understand how these type of charges differ, as with direct charges the connected account (not the platform) is the merchant of record and thus liable for disputes, refunds, etc
- any effect on the UI while paying? I don't want any redirects, I want my user to pay and get a receipt from my platform.
what is the other option beside standard? - is it possible to pay into my platform account , and i will have a BE operation to payout money to this connected account?
edited ๐
If you want the platform to be the merchant of record, then you'd use Express accounts with destination charges
I'd recommend reading all the documentation I've linked, it explains the key differences between Connect account and charge types
thx ๐
and regarding the second question?
It's all covered on the documentation. With destination charges, this is how it works:
The transfer to the connected account is all automated, and then you can either configure automatic scheduled payouts to bank accounts or do them manually: https://stripe.com/docs/connect/manage-payout-schedule
thx a lot it was very helpful
np!