#sapient_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/1282627949794689025
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- sapient_api, 1 hour ago, 14 messages
in test mode i have created one connect account using express method and account link is generated and also all details is fill up using link but in stripe dashboard show restricted status in generated account. why so ?
hi! https://docs.stripe.com/connect/handling-api-verification#determine-if-verification-is-needed is how you can inspect the account and see why.
plz give me information in details
what information are you looking for?
which process i can do and remove restricted status to completed status ?
you'd provide the required information that is currently missing as described in the requirements field of the Account object. There are values for test mode documented at https://docs.stripe.com/connect/testing#identity-verification
every time call this
const fp = fs.readFileSync('@/path/to/a/file.jpg');
const upload = await stripe.files.create({
file: {
data: fp,
name: 'file.jpg',
type: 'application.octet-stream',
},
purpose: 'dispute_evidence',
});
why dispute_evidence? this has nothing to do with disputes right?
when account link is created i fill up all the details which in require in this
till why showing restricted status and why don't changed status to completed ? please give me proper solution
i have use this code for link creation
const account = await stripe.accounts.create({
type: "express",
});
console.log("๐ ~ getAllFaqs: ~ account:", account);
const accountLink = await stripe.accountLinks.create({
account: account?.id,
refresh_url: "https://example.com/reauth",
return_url: "https://example.com/return",
type: "account_onboarding",
});
you can inspect the account(via the API fields in the docs I linked above) to see exactly why and what information it's missing. I'd suggest starting there.
in this require filed which file is ulpoaded and also in test mode it is require ?
probably the issue is you uploaded a file with purpose: 'dispute_evidence' instead of the required identity_document ?
and yes in test mode a file can be required, you can use the test data and files mentioned in the docs at https://docs.stripe.com/connect/testing#identity-verification
dummy any file or photo is valid or not ?
no, it has to be the "magic" file that is mentioned in those docs.