#Fubaibai-pay-flow
1 messages ยท Page 1 of 1 (latest)
๐๐ฝโโ๏ธ
So you are asking how do you determine if a Connected Account is enabled such that it can accept payments?
Exactly
Since our users will directly pay the Connected Account, and then we will collect application fee as describe in my screenshot ๐
I would never look at details_submitted personally
I only look at charges_enabled and payouts_enabled at a high level. And then I look at the requirements hash to get more information (if you take non card payments, like ACH Debit, Klarna, etc., they each have their own restriction)
I recommend reading https://stripe.com/docs/connect/identity-verification-api
which attributes is mandatory to the connected account to receive a payment ?
For example if charges_enabled and payouts_enabled are true, is it correct to think that everything is ok for the connected account to receive a payment ?
for card payments yes. Really you need to read the doc I just shared above it explains everything
Ofc i will go ready it one more time ๐
Last question, for google pay and apple pay, is there some verification ?
Google Pay no, Apple Pay is a lot more complex as a Connect platform and you'll want to read https://stripe.com/docs/stripe-js/elements/payment-request-button specifically https://stripe.com/docs/stripe-js/elements/payment-request-button?html-or-react=html#html-js-using-with-connect
Thx a lot