#waseemanwarRoR
1 messages · Page 1 of 1 (latest)
Hi 👋 can you tell me a bit more about your scenario because that is a bit of an odd question. Typically Connected Accounts are associated with receiving funds, so I'm a little surprised you're trying to checkout after creating an account.
Are you building a Connect integration?
Yes, i am integrating stripe connect
Ah, gotcha, when you're creating your Express Connected Accounts, are you requesting any capabilities for them? The second code snippet here shows an example of reqeusting capabilities.
https://stripe.com/docs/connect/express-accounts#create-account
Yes
Both capabilities
Card_payments: {requested: true},
Transfers: { requested: true}
Is stripe connected account use for both checkout and payout?
Can you elaborate? What do you mean when you ask if the Connected Account is used for checkout?
For example one user subscribe the plateform subscription and also want to sale his/her product on that plateform.
I am using stripe express for collect payments
There are two different flows there. One where an entity is completing a purchase from your Platform, that entity will need to be represented by a Customer object in Stripe. You will not be able to create payments that directly bill a Connected Account.
The other flow is someone purchasing from your connected account. If you're working with Express Accounts then it's recommended that you use Destination Charges:
https://stripe.com/docs/connect/destination-charges
in which case the payments are still processed on your Platform account, but then some (or all) of the funds from the payment are sent to the Connected Account.