#fazilhussain015
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- fazilhussain015-connect, 3 hours ago, 18 messages
- fazilhussain015, 4 hours ago, 4 messages
- fazilhussain015, 1 day ago, 8 messages
- fazilhussain015, 1 day ago, 16 messages
- fazilhussain015, 4 days ago, 9 messages
- fazilhussain015, 4 days ago, 14 messages
What do you mean when you say "Stripe is not getting the individual details"? Are you passing them in the API or are you expecting them to be collected by the onboarding flow?
im expecting them to be collected by the onboarding
I feel like I might be overlooking something, which is why it's not being collected. When I pass the capabilities for card payments, they ask for all these informations
How are you onboarding these accounts?
im creating a custom connect account using api and redirecting user to the generated link by api to onboard the customer
How do you generate the links? Can you share an API request ID for this? It will start with req_
Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
yes i can let me check this
do not close this chat im trying to get the id
Threads are closed due to inactivity. You can always ask again in the main channel
here is the request id req_UjjCh1AOcxvtB0
hi
Okay taking a look at your request and the related account
okay thanks
So this account was not created with any of the capabilities listed above, you can see that here: https://dashboard.stripe.com/logs/req_4MXWDDZIDJMEd9
im creating an account for the individual also
and during the onboarding process customer providing their SSN number.
now using the retrive api im getting the all details of customer but there is no attribute for the SSN just getting this attribute for the SSN ssn_last_4_provided
for Express accounts we do not return that data to the Platform
You as the platform cannot access that data, only verify whether it has been collected
but im working with custom method
The account in the request you created in of type express though.
you can check the connect id
acct_1OAxu8PwP41jZeij
That is a different account. Yes you should be able to retrieve these details in the individual property: https://stripe.com/docs/api/accounts/object#account_object-individual
Wait sorry, you won't see the actual last 4 of their SSN
but i think in the custom method stripe allow us to fetch all the details
as a platform we need this information to identify the entity
You can fetch all the details show in the individual property I showed above
okay is there any customization available for any specific platform ?
if we request stripe leggaly ?
Hi there 👋 taking over, as my colleague needs to step away
Can you be more specific about your question? I'm not sure I understand what you're asking
i want to get the last ssn number of an individual account created by connect api
using custom method
You can't unfortunately. You can only see a boolean value that says whether or not they provided an SSN. This is considered sensitive data and we do not surface it for anyone
but as a platform we need this information to identify the customers for the security purposes.
If we legally request customization from Stripe to get these details, is there any possibility?
Not that I know of. Obviously if this request is part of a court case or something similar where stripe is legally obligated to provide the info, then they likely would, but you would have to go through our support folks to make that request: https://support.stripe.com/contact
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
my other question was
for the business_type="company"
stripe not getting the owner individual details such as legal name whose own this company and relationship as we need this information ,
im creating account with these capabilities
'type' => 'custom',
'capabilities' => [
'transfers' => ['requested' => true],
'tax_reporting_us_1099_misc' => ['requested' => true],
'tax_reporting_us_1099_k' => ['requested' => true],
],
'business_type' => 'company',
There's no way to get that information otherwise
Did you make a GET request to try and get the Account object? Did that Account object conain any of that info?
for the ssn ?
No, for the Account object
no let me explain you about my question
im creating a custom connnect account for the business_type="company"
here is the code snipet
$response = $stripe->accounts->create([
'country' => 'US',
'type' => 'custom',
'capabilities' => [
'transfers' => ['requested' => true],
'tax_reporting_us_1099_misc' => ['requested' => true],
'tax_reporting_us_1099_k' => ['requested' => true],
],
'business_type' => 'company',
'business_profile' => [
'product_description' => $data['slug'],
],
]);
$urls = $stripe->accountLinks->create([
'account' => $response['id'],
'refresh_url' => route('get.connect.link', ["slug" => $data['slug']]),
'return_url' => route('bankdetails.compaign', $data['slug']),
'type' => 'account_onboarding',
]);
im redirecting customer to the url created by this api.
when customers goes to this url they provide their business details.
my question is why stripe not getting the individual details such as whose own this company or leggal name of person whose putting business information
Do you have an account ID of an example account where this is happening?
Did you visit the URL that was generated when you created the Account Link? It doesn't look like you did.
recently i have completed the onboardin process for this ID
acct_1OAzOLQ6fX5TRuKh
What do you mean "completed the onboarding process"? Can you try to be more specific? What did you actually do? What steps did you take? What information did you fill out? What did it look like?
How did you get to that page?
That looks like a 3rd party page. Are you using a plugin or a connector to generate that page?
no
as i mentioned above
im creating a url using stripe api
to redirect customer for the onboarding process
im talking about the connnect custom onboarding process
Can you provide that URL for me here so I can see the page you're seeing?
i have created new one for you
That one looks like it goes straight to the redirect. Can you create a new one without opening the link on your end?
i did not opened this
i have create a new one again
https://connect.stripe.com/setup/c/acct_1OB0DhPrEWnxgRpE/n2xj5RonkAmb
may be it consider as opened when i share on this platform
It's redirecting me here: http://127.0.0.1:8000/fundraiser/campaign/get-connect-link?slug=tratamiento-medico-rehabilitador-alberto-rentero
Can you share:
- a video of you going through the onboarding flow, and
- a request ID for the request you made that created the Account Link (here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request)
i think we are not at the same point
as already i have provided you all of the information
Not the information I just requested. That's not anywhere in the thread
Yeah but related to the process
could you please look at this code snipet ?
$response = $stripe->accounts->create([
'country' => 'US',
'type' => 'custom',
'capabilities' => [
'transfers' => ['requested' => true],
'tax_reporting_us_1099_misc' => ['requested' => true],
'tax_reporting_us_1099_k' => ['requested' => true],
],
'business_type' => 'company',
'business_profile' => [
'product_description' => $data['slug'],
],
]);
$urls = $stripe->accountLinks->create([
'account' => $response['id'],
'refresh_url' => route('get.connect.link', ["slug" => $data['slug']]),
'return_url' => route('bankdetails.compaign', $data['slug']),
'type' => 'account_onboarding',
]);
That's not helpful. The code snippet doesn't tell me what selections you made during the onboarding process
what selection you are talking about ?
okay could you please tell me who will issue and handle the 1099 form ? platform or stripe ?
When you navigate to the onboarding flow and submit the name, phone number, website url, etc.
okay could you please tell me who will issue and handle the 1099 form ? platform or stripe ?
We don't have a lot of context about non-developer questions in this channel. I would recommend reaching out to our support folks here: https://support.stripe.com/contact
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.