#fazilhussain015

1 messages · Page 1 of 1 (latest)

pulsar saddleBOT
#

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.

woeful wigeon
#

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?

manic vale
#

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

woeful wigeon
#

How are you onboarding these accounts?

manic vale
#

im creating a custom connect account using api and redirecting user to the generated link by api to onboard the customer

woeful wigeon
manic vale
#

yes i can let me check this

manic vale
#

do not close this chat im trying to get the id

woeful wigeon
#

Threads are closed due to inactivity. You can always ask again in the main channel

#

here is the request id req_UjjCh1AOcxvtB0

manic vale
#

hi

pulsar saddleBOT
woeful wigeon
#

Okay taking a look at your request and the related account

manic vale
#

okay thanks

woeful wigeon
manic vale
#

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

woeful wigeon
#

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

manic vale
#

but im working with custom method

woeful wigeon
#

The account in the request you created in of type express though.

manic vale
#

you can check the connect id
acct_1OAxu8PwP41jZeij

woeful wigeon
#

Wait sorry, you won't see the actual last 4 of their SSN

manic vale
#

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

woeful wigeon
#

You can fetch all the details show in the individual property I showed above

manic vale
#

okay is there any customization available for any specific platform ?
if we request stripe leggaly ?

clear kestrel
#

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

manic vale
#

i want to get the last ssn number of an individual account created by connect api

#

using custom method

clear kestrel
#

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

manic vale
#

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?

clear kestrel
#

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

manic vale
#

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',

clear kestrel
#

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?

clear kestrel
#

No, for the Account object

manic vale
#

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

clear kestrel
#

Do you have an account ID of an example account where this is happening?

manic vale
#

let me create one for you

#

look at this
acct_1OAxzuPuI823FpJl

clear kestrel
#

Did you visit the URL that was generated when you created the Account Link? It doesn't look like you did.

manic vale
#

recently i have completed the onboardin process for this ID
acct_1OAzOLQ6fX5TRuKh

clear kestrel
#

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?

manic vale
#

@clear kestrel yeah sure let me show the screenshot

#

please look at this

clear kestrel
#

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?

manic vale
#

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

clear kestrel
#

Can you provide that URL for me here so I can see the page you're seeing?

manic vale
#

yes i can

#

@clear kestrel could you please assist me with the priority?

manic vale
clear kestrel
#

That one looks like it goes straight to the redirect. Can you create a new one without opening the link on your end?

manic vale
#

i did not opened this

#

may be it consider as opened when i share on this platform

clear kestrel
manic vale
#

i think we are not at the same point

#

as already i have provided you all of the information

clear kestrel
#

Not the information I just requested. That's not anywhere in the thread

manic vale
#

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',
    ]);
clear kestrel
#

That's not helpful. The code snippet doesn't tell me what selections you made during the onboarding process

manic vale
#

what selection you are talking about ?

#

okay could you please tell me who will issue and handle the 1099 form ? platform or stripe ?

clear kestrel
#

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