#jathin.rathod-transfers
1 messages · Page 1 of 1 (latest)
ok
My application are two user one is normal user other one is contentcreater user. so in that case normal user are subscribe plan for contentcreater user in that case send money to contentcreater.
one content creater multiple noramal user hase paid some money based on plan.
so i am contentcreater my stripe wallet have money now i am transfer my wallet amount to my different bank account. is it possible?
the normal user is what Stripe terms as a Customer. In your situation, the ContentCreator would be termed as the Connected account. And your application would be the Platform.
Your business model would use Connect : https://stripe.com/docs/connect
Yes, it is possible to transfer the money in the connected account's balance to their bank account. It's also possible to transfer it to different bank account.
yes stripe connect use withdraw money to my different account any api ?
i suggest you go through the Connect guide : https://stripe.com/docs/connect since using Connect can be pretty complex.
To specifically answer your question on how to pay out funds to a connected account, you would want to create a payout [0] on the connected account [1].
[0] https://stripe.com/docs/api/payouts/create
[1] https://stripe.com/docs/connect/authentication
ok you are saying [0] create payout and this account is transfer amount in my bank right?
- assuming the connected account's Stripe balance has sufficient funds
- you would create a payout on the connected account
- the funds from the connected account's Stripe balance will be paid out to their bank account
Just as a reminder, you should never share your secret API keys regardless of whether it's a test or live mode key. I strongly suggest you roll your test mode key immediately as the one you sent is now considered compromised: https://dashboard.stripe.com/test/apikeys
have you created a connected account?
connected account are use in payout right?
ok
the connected account are your contentcreater user
let me summarize,
your content creators will need to have an account with Stripe - depending on the level of control and customization you need, they would need to have a Custom/Express/Standard account which is connected to your platform account - https://stripe.com/docs/connect/accounts
Once the connected account is onboarded, the connected account would need to have a bank account. Again, how this is done would depend on the connected account type. For Express / Standard connected accounts, your content creator can add their own bank account via the Dashboard. For custom accounts, you would need to add a bank account via the API : https://stripe.com/docs/api/external_account_bank_accounts/create
Then you would need to either create a charge on the connected account or transfer funds to
the connected account. Once the connected account has available funds in it's Stripe balance, then you will be able to create a payout on the connected account.
is that what you wanted to achieve?
ok thank you so much for understanding. i will get back to you when any issue is happening.
connected account is onboarded, the connected account would need to have a bank account.
-- Multiple bank account right?
Once the connected account has available funds in it's Stripe balance, then you will be able to create a payout on the connected account.
-- Create payout api how to get a
curl https://api.stripe.com/v1/payouts
-u -- Paramaeter?
sorry, i didn't quite understand your question, can you try rephrasing?
- connected account would need to have multiple bank account right?
- Create Payout api -u parameter which value pass?
what type of connected account did you create?
custom (Bank account)
did you create a custom/standard/express connected account?
yes i will create based on your suggestion
but my question is one connected account have multiple bank account right because my main purpose is i am withdraw money in my different account
the answer will depend on what connected account type you are planning to use. If you're using custom account, then you can add multiple bank accounts using the API : https://stripe.com/docs/api/external_account_bank_accounts/create
If you're using Standard or Express, then the user can only add one default bank account. If they want to payout to a different bank account, then they will need to edit that bank account in the Stripe Dashboard
ok in my case custom account it will better becauase we have multiple account so
ok thanks