#abdus-samad_api
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1286056664134455397
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Can you share an account ID from one of your test Connected Account
Looks like acct_xxxx
acct_1Q0SmPBOeYSSiMPG
Okay you are creating Express Accounts so they have a prebuilt Dashboard. Your users can login to this Dashboard either by simply going to https://connect.stripe.com/express_login or you can create a login link for them: https://docs.stripe.com/api/accounts/login_link/create
ok so once i create an account using AccountCreateParams API, do i need to use AccountLinkCreateParams API for seller verification in stripe? or i can directly use LoginLinkCreateOnAccountParams API for taking seller to express dashboard
Correct, you create an Account Link to onboard them and then in the future you use a Login Link to direct them to their Express Dashboard after they have already onboarded.
ok
for onboarding verification, is there a simple verification ? The verification i went through was really complex where it asked for SSN, upload my driver license, my home address etc...
short question is there a quicker verification process
You can set collect: 'currently_due' https://docs.stripe.com/api/account_links/create#create_account_link-collect to only collect the minimum amount of requirements. But no, there is generally no shorter verification process. We must do KYC before we can process for a merchant.
ok thanks
is there any API to check if the seller has completed his stripe verification
Generally you use Webhooks for this and listen for account.updated Events and check the requirements hash of the Account object to see if they have any outstanding requirements. See: https://docs.stripe.com/connect/handle-verification-updates#listen-for-account-changes