#starky_api

1 messages ¡ Page 1 of 1 (latest)

steep martenBOT
#

👋 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/1225353644644241449

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

tacit phoenixBOT
dawn merlin
#

hi there!

#

what do you mean by "ID"?

#

are you talking about account ID (acct_xxx)?

queen pollen
#

No. Basically when I onboard a connected account, then I have "to review it" and it usually asks for the ID (passport, national card., etc) from the user.

#

And I kinda wanted to do this automatically

dawn merlin
#

no you can't request additional fields in the Stripe onboarding.

#

so if you want some additional information, you'll have to collect it yourself

queen pollen
#

No, not myself. It is Stripe who requires it and the verification of real person.

dawn merlin
#

what types of account are you creating? Standard, Express, or Custom?

queen pollen
#

Custom.

dawn merlin
queen pollen
#

So I have to use the Person update?

#

the Persons* api?

dawn merlin
queen pollen
#

which I am using, but it does not ask the user to upload their ID, it may ask to upload the company registration letter, but afterwards we still have "pending review items" where it asks the user personal ID

dawn merlin
queen pollen
#

Ah!!! DId not see the include thing. Cool will try that. Thank you for the help

#

Did not worked

I inlcuded this:

StripeConfiguration.ApiKey = Environment.GetEnvironmentVariable("stripe_sand");
var options2 = new AccountLinkCreateOptions
{
Account = accountid,
RefreshUrl = "https://www.cw1.com/en/pharmux/kyc/end",
ReturnUrl = "https://www.cw1.com/en/pharmux/kyc/end",
Type = "account_onboarding",
CollectionOptions = new AccountLinkCollectionOptionsOptions
{
Fields= "eventually_due",
FutureRequirements = "include"
},
};
var service2 = new AccountLinkService();

and then did the onboarding, but still get the screens in the screenshot:

dawn merlin
#

interesting. and when that happens, can't you just create a new Account Link to collect the missing information?

queen pollen
#

ahh cool!!!! It can do that!

Perfect!!! Thank you so much!!!

#

Did not know that you could just recreate an account link, just tried it and works. Perfect you can close this ticket