#DiscoBlade
1 messages · Page 1 of 1 (latest)
hi! what are your specific technical questions?
We are planning to use connect with express account type we want to implement it in our mobile app. My question is how we can get the seller created account id when he/she finished fill out the form?
We want to save the account id in our database so that we can pay the seller using the payout endpoint.
We are going to pay the seller using our bank account balance.
you get the account ID as part of the returned Account object when you create the account in the API so you know it immediately https://stripe.com/docs/connect/express-accounts#create-account
then you can listen to account.updated webhook events to be notified of the status of the account as it changes
https://stripe.com/docs/connect/webhooks
https://stripe.com/docs/connect/identity-verification-api#determining-if-identity-or-business-verification-is-needed
How can the seller able to add their bank or card details? so that when we transfer them a money it will automatically transfer it into their bank or card
it's part of the onboarding
https://stripe.com/docs/connect/express-accounts#redirect-link part of that includes a page where they will enter payout details, you'll see when you try it out in test mode
I'm kinda confuse on return url and refresh url since we are using a mobile app as a platform
they should be links to your server
the server can then do a 3xx redirect to a my-app:// URL if needed and your app might detect that if the onboarding is happening in the system browser
I wouldn't recommend actually doing this in a mobile app like a WebView since the onboarding page can do some complex things like requiring a file upload or accessing the camera to scan an ID document, and for example in Android WebViews need a lot of extra code in your app to support that. It works better if you do this all on the web
hmmmm it's kinda complicated