#umbra-verification
1 messages · Page 1 of 1 (latest)
Well, I implemented the check for connected accounts when I tried to download the files. But I'm not sure if I'm providing all the necessary files or attaching them correctly, so I'd like to check that. When I download any files, I immediately get an error saying they don't pass verification because the data doesn't match, which makes sense, but is there a way around it so that the contents of the files are not verified, and I just see a list of what still needs to be downloaded?
not sure what you mean by "downloading" files. Do you have an example of something I can look at? Quite lost right now
Yes, one minute
I tried to implement this https://stripe.com/docs/connect/identity-verification-api
In my code, it looks like this on the screen. The code works, I just want to make sure I'm asking my user for all the necessary files
just want to make sure I'm asking my user for all the necessary files
therequirementshash on the Account object tells you exactly what's needed
Ok, is there a way to check this to make sure I've understood the documentation correctly and defined the requirements correctly?
the account becoming verified in test mode after you create it and provide all the information, I would say
overall I highly suggest not doing any of this at all , you should either use Express accounts, or redirect Custom accounts to the hosted onboarding to collect all this information, building this infrastructure yourself is a large engineering effort
I would be happy to do exactly as you say, but unfortunately, my customer wants an option of exactly this implementation
So I need real files to test this and there is no way to bypass the file content check?
we have test files for it
you can either download https://d37ugbyn3rpeym.cloudfront.net/docs/identity/success.png and then upload that to the Stripe Files API and pass the ID of that FileUpload , or you can pass the magic string mentioned on that page , to fulfill the requirement for a doc
Thank you, you have helped me a lot. Does this work with company verification documents as well?
as far as I know it should
Hi! I'm taking over this thread.
I don't think so, but I recommend testing this in test mode to see how it works.
For some reason it doesn't work for me
In all 3 cases, I downloaded the file for successful verification
can the reason be that in this case the business type is individual?
And yes, I'm doing it in test mode
Can you share the request ID (req_xxx)?
Thanks! Give me a few minutes to look into this.
Thanks, I'm waiting
It looks like there is a lot of information missing from that account. Generally the flow is:
- create the account
- provide KYC info like name/address/DOB/tax ID/social security number (<== the step that you forgot)
- Stripe will then check all that information
- if we can’t verify the person from that information, then we ask for a document and you upload one
Well, I don't ask the user for all of this information, except for the tax ID number, and I expect that information to be obtained through documents. Can't I just upload the documents?
Like I said above, you need to provide all this information (name/address/DOB/tax ID/social security number) to Stripe. That's why we strongly recommend to use the Stripe onboarding that will take care of this for you: https://stripe.com/docs/connect/connect-onboarding
Ok, I understand why you recommend it and I can't use it yet.
So if I provide all this data, can I test the verification with documents?
First provide all the information. And then depending on what you see in the requirements, you may have to provide the document. https://stripe.com/docs/connect/identity-verification-api#determining-if-identity-or-business-verification-is-needed
Okay, thank you