#fakossa_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/1339564277383827456
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
I tried to prefill address fields, mcc, company name, etc...
{
"country": "fr",
"type": "express",
"capabilities": {
"card_payments": {"requested": true},
"transfers": {"requested": true}
},
"business_type": "company",
"company": {
"name": "repairHub ok",
"registration_number": "000000000",
"address": {
"line1": "25, rue victor hugo",
"city": "pantin",
"postal_code": "93500",
"country": "FR"
}
},
"business_profile": {
"mcc": "7699",
"url": "https://example.com"
}
}
But I want to prefill as much fields as I can actually
I want the user to fill in the inputs in my plateform
and just validate everything on the stripe's KYC form
looks like what you are doing is correct. then it's up to Stripe to decide what will be prefilled, and what will be asked to users. that's not something you can directly control.
Ok so I better not ask previously for those information and get them back directly from stripe, that's what you are saying?
Because I didn't want to control what should be asked by stripe. I just wanted to prefill the inputs
I'm not supuer familiar with how the onboarding works. it's possible some information will be prefilled. or some information won't be asked at all if you already provided it.
so if you do have information about your users, it does make sense to add them when creating the account.
Ok I understand but it seems that not
๐ taking over for my colleague. Let me know if there's any follow-up Qs I can answer!
yep. We try to figure out if it was possible to send information in parameter to the KYC but it seems that it is not possible
Here are the information I sent
But I didn't get them back from stripe. I needed to entire those again for the KYC
{
"id": "acct_1Qs0daQ6lV8YBDyO",
"object": "account",
"business_profile": {
"annual_revenue": null,
"estimated_worker_count": null,
"mcc": "7699",
"name": "repairHub ok",
"product_description": null,
"support_address": null,
"support_email": null,
"support_phone": null,
"support_url": null,
"url": null
},
"business_type": "company",
"capabilities": {
"card_payments": "inactive",
"transfers": "inactive"
},
"charges_enabled": false,
"company": {
"address": {
"city": "pantin",
"country": "FR",
"line1": "25, rue victor hugo",
"line2": null,
"postal_code": "93500",
"state": null
}
just an extract here in json
You can see that the sompany address has been sent
will be with you shortly
as my colleague said, there are some params that we allow you to update while others can't be updated by the platform
it seems that there are none. But nevermind. Thanks