#Henrique Antonio
1 messages · Page 1 of 1 (latest)
yep, works just fine
When creating a payment intent with the attribute transfer_data, it is not possible to validate the action because the destination is a Connect account that does not have the necessary bank details filled out. How can I proceed in this situation?
what do you mean by 'validate the action'?
The post method is revoked, throwing an error that says that a connected account needs the bank details
can you share the request ID req_xxx from the error?
yeah the error is not about not having a bank account, it's about not having the transfers capability
you have to actually onboard the account (https://stripe.com/docs/connect/express-accounts#redirect-link and in test mode enter the information from https://stripe.com/docs/connect/testing#identity-and-address-verification)
maybe I misunderstood your question, but it makes no sense to just create the account in the API and then send money to it — you at least need to redirect the user to the Express onboarding first to get the account initially set up, after that you can treat it as active in your system and transfer funds!
Ok, i will check that
On my marketplace, users can sell items without providing any bank details. If an item is sold, the credit remains in the user's account until they provide their bank details.
yep, but they still have to create their Stripe account before they can really do anything
and note that if you're using Express, it does ask for bank details as part of the onboarding, so I can't see how you can implement 'without providing any bank details' as a feature since it's part of Express that it does ask for it. If you haven't already , you should be testing the AccountLink(my docs links above) to see what the flow looks like
Sure, i will do that, thank you for your help and quick response!