#pawan425_verification
1 messages · Page 1 of 1 (latest)
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- pawan425_api, 21 hours ago, 52 messages
👋 Welcome to your new thread!
⏲️ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1253271062594977832
📝 Have more to share? Add details, code, screenshots, videos, etc. below.
i want to see verified status in stripe dashboard of my custom connected account
There must be some missing information yet, did you check the requirements ?
And complete all missing information
or use AccountLink if you are using Stripe hosted onboarding
yes
What you mean by "yes" exactly ?
it's showing this , how i know what is missing ?
cutsom connected account via API
So you should follow this section:
https://docs.stripe.com/connect/custom/onboarding#take-your-account-through-the-onboarding-flow
In other words, you need to listen to the event account.updated
can i get webhook event that it's account verified ? from stripe?
And check what is missing on the requirementfield, then collect/update the missing information
There is no explicit event for "verified" account you need to listen to the account.updated event and check it's capabilities to determine if it's verified or not yet:
https://docs.stripe.com/connect/custom/onboarding#verification-handling
Now according to the event you've shared initially evt_1PTgasFb8HfjTQSvFf4lHWSv, the missing information for the account to be verified is documents.bank_account_ownership_verification.files and individual.id_number
You need to collect them and update them on that Connected Account level
You can use these Connect testing values:
https://docs.stripe.com/connect/testing
oh ohk thanks let me check
👋 taking over for my colleague. Let me know if there's any follow-up Qs I can answer!
pawan425_verification
if i use bussiness type company then i can't use individual in the connected account api, then i i can attach the owner details of the connected account? via person API and need to attach it with that connected account ?
@floral kayak
yes
ok thanks buddy
Verification needed
it's asks for verification document upload
acct_1PTi7D2X42RlOlP3
what's the exact dev question related to that?
this
i am using person api to add representative of the connected account but it's not verified yet
although i provided all details
did you use the testmode values that get approved in test mode? https://docs.stripe.com/connect/testing#identity-verification
i.e. they have to be born 1/1/1901 and have an address like address_line1, London, UK, that sort of thing.
i am using the dedetails which worked on my another connected account
why it asking for these details
currently_due: [
'company.owners_provided',
'documents.bank_account_ownership_verification.files',
let's ignore the 'why'
for company.owners_provided' you need to set https://docs.stripe.com/api/accounts/update#update_account-company-owners_provided to true after adding the Persons.
the only values that work are the ones in the testing documentation I linked to.
{
alternatives: [],
current_deadline: null,
currently_due: ['documents.bank_account_ownership_verification.files'],
disabled_reason: 'other',
errors: [],
eventually_due: ['documents.bank_account_ownership_verification.files'],
past_due: [],
pending_verification: []
}
now i have this
does it required
?
if it's in the API it's required
that one I'm not sure how to resolve. I'd suggest creating and visiting an AccountLink and that will handle things hopefully(note you should really just do that for evertything instead of directly using the API, it's much easier)
i don't want to use hosted onboarding @tardy holly please help
my answer is what I said above
I *don't know * how to resolve documents.bank_account_ownership_verification in test mode(I've had that question before and we couldn't figure it out, it might be a bug that it's sometimes required in test mode), I think the hosted onboarding can handle it though.
You can upload one use one of the test tokens here, and pass it to this parameter when updating the account: https://docs.stripe.com/api/accounts/update#update_account-documents-bank_account_ownership_verification-files
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
so is that possible that i can create my connected accounts and without this file or document those accounts shows completed / verified on stripe ?
@stoic palm
I don't understand
i have a platform , i have signup page on which my sellers put their details and i am passing those details on stripe connect apis and create a connected account for those sellers
so is that possible that without any document upload sellers accounts show this on connect account dashboard
Can't say definitively as each account verification is assessed on a per case basis
so how and which options i need to choose so it don't ask document verification
@stoic palm
That's not possible really. You should expect that your users will be expected to provide at least some detials for verification, and the extent of which can vary
We have hosted onboarding UIs to handle this entire flow for you, which is a much simpler integration than the custom one you're doing now