#_abhi_96
1 messages · Page 1 of 1 (latest)
Hi there!
I recommend to read that doc, it should cover everything you need: https://stripe.com/docs/connect/collect-then-transfer-guide
i checked but confused
Happy to help if you have specific questions.
the connect account is for specific user or the customer inside connect account is for specific user
?
You are the platform with a Stripe account. People that can receive money are the Connected accounts. People that pay are Customers (the end users).
the issue is anyone can receive and pay, so creating user for every account is becoming complicated
any other solution?
If you need to send money to someone using Stripe, then you need to use Connect and they need to have a Stripe account. There's no other way.
Note that there are different account types possible: https://stripe.com/docs/connect/accounts
stripe account to stripe account transfer is possible?
If you are a platform account, and you have accounts connected to you, then yes the platform acn transfer funds to the connected account.
platform account as in the main account?
yes
or stripe connect account?
The platform account (main account) is connected to multiple connected account. You can transfer money from the platform to any of the connected accounts.
so can stripe connect account send payment to another stripe connect account
Hello 👋
Taking over as soma needs to step away soon
The Platform account can transfer money to connected accounts, yes.
how about connected account inter transfer?
Connected accounts can't transfer to each other, no.
Platform has to be involved.
so first connected account will transfer amount to platform account then platform account will transfer to second connected account?
Yup
can you please provide doc for transfer between platform and connected account
to and fro
I don't think we have a guide as such for this because this also depends on the type of connected account you're using.
Platform can transfer the amount to connected accounts using the transfers API
https://stripe.com/docs/api/transfers
However, they can't create an account debit on standard accounts, only express and custom supports that
https://stripe.com/docs/connect/account-debits
For standard accounts, you'd need to create a Customer object and charge their payment method as usual (instead of pulling from their available balance)
For standard accounts, you'd need to create a Customer object and charge their payment method as usual (instead of pulling from their available balance)
i didn't get this part.
For standard connected accounts, You'll need to create a Customer object for the connected account (like you would for a typical customer on your app) and have them store their payment method so that you can charge them whatever amount you have to
You can't use account debit with Standard Accounts so that would be a workaround
ok
one more doubt, suppose i need my users to pay one time fee, which service can i use?
There are a couple of options. What is this fee for exactly?
You could use PaymentLinks, Stripe Checkout, PaymentIntents etc.
Are you looking for an API based solution or just a way to accept one-time payment?
one time membership fee
Sorry what I meant was Is that part of a subscription or just an individual payment?