#johana_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/1369631262356148275
π 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.
- johana_api, 11 hours ago, 20 messages
π
You can use Stripe Connect here, with individual accounts...
You can use Destination charge here if you want to manage the transaction lifecycle (disputes, refunds...) otherwise you can use Direct Charges
It depends exactly on your needs
I have tried stripe connect with express account but as I explain, the connected account is not for individual person but for the company
When user has to complete his information, Stripe asks to choose what kind of company he is
the connected account is not for individual person but for the company
Then your connected account should enter the company details when Stripe asks for
As they are companies
But the users of my website are individual person not company
so they are no companies information. Is it possible to not asking the user his company information ?
Ah sorry, I though you said they are companies actually
Then nope you can't, your connected accounts needs to fill all the required fields by Stripe.
ok, another question
Yes sure!
How to retrieve the information filled by user (name, birthday, address) after KYC verification to update my website ? I've tried with await stripe.accounts.retrieve but there are not birthday, phone nor address
You need to retreive the persons of that account:
https://docs.stripe.com/api/persons/list
You should get those informations
I do that but no dob in the object retrieved
Can you share the person Id ?
"id":"person_1RK2LW2Zd4En6XgUAHf1bGve"
Well they have a dob
When you try this API, you are not getting the birth date ?
https://docs.stripe.com/api/persons/retrieve
no
can you share the request Id please of the API call ?
Here is the object :person stripe: {"id":"person_1RK2LW2Zd4En6XgUAHf1bGve","object":"person","account":"acct_XXX","created":1746126034,"email":"xxx@xxx","first_name":"Johana","last_name":"XXX","relationship":{"authorizer":false,"director":false,"executive":false,"legal_guardian":false,"owner":false,"percent_ownership":null,"representative":true,"title":null}}
I don't know how to find that
You can find in the header response of the API call
https://support.stripe.com/questions/finding-the-id-for-an-api-request
But it's ok as you've shared the response object raw
Checking further...
Ah actually that's expected
You can't read the KYC of your Connected Account after onboarding...
So there is no possibility to retrieve these information to update my website ?
π taking over for my colleague. Let me catch up.
Thanks
yes unfortunately as my colleague explained if the KYC is collected by Stripe you don't have access to that information
ok
Has Stripe a solution of identity verification ? If yes, can we retrieve user info verified ?
unless you opt in for a Custom accounts https://docs.stripe.com/connect/custom-accounts meaning you are responsible for collecting KYC you won't have access to this information
ok, Another question please
sure
I'm obligated to use stripe connect for my website ? Cannot I use for example PaymentIntents to manage paiement and transfering directely in the bank account of the seller ?
you can but you would also be subjected to bank transfer requirements even if it's outside of Stripe
sure
Like I explained, I want to avoid user to give their companies info because, they are individual person and not companies. So, it's possible to prefill these information when creating a connected account ?
yes for Custom Accounts
actually you can do that for express accounts as well
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
thanks