#shamim96

1 messages · Page 1 of 1 (latest)

sacred brambleBOT
sullen laurel
#

Hi there!

#

You can use the search bar in the top right.

iron ginkgo
#

Yes, thats correct. But how can I get the thread from any menu? or what should I search?

sullen laurel
#

Search for from: shamim96

#

And you'll see all your previous messages

iron ginkgo
#

Can you help me from that previous thread, previously i could reply in time and the tread was archived.

#

I was asked for connected account ID (acct_xxx). Now I can give you that account ID.

sullen laurel
#

Can you summarize your question in this new thread?

iron ginkgo
#

I implement onboarding connect account setup with my web application. I am using custom account. So wanted to create bank account through stripe so that the bank account validate during creating and I can pass the bank account while creating connect account. But problem is, as I am going to give opportunity to create connect account from all countries users, I can not use stripe own form to create users bank account, because stripe support only US and my maximum users from UK. Now I find, there is a system, If I enable an option from my stripe, stripe will ask the bank account from the users for payout during their connect account setup. I tried but its not working.

#

Check this recording video.

sullen laurel
#

can not use stripe own form to create users bank account, because stripe support only US and my maximum users from UK.
Where did you saw this?

#

Also note that we rarely recommend using Custom account, since this is a very complex integration. We usually recommend using Express or Standard accounts.

iron ginkgo
sullen laurel
#

Can you share a link to this page?

sullen laurel
#

This page says:

Every country has a slightly different format for bank account details, and the form automatically updates the fields presented to Custom accounts based on your country of operation.
So it should work for all countries, not just US and UK.

iron ginkgo
#

The question is when the form will comes to the user?

#

Does the form comes when people are going to create connect account?

sullen laurel
#

It's when you create the account link to onboard the connected account.

iron ginkgo
#

I did it, but I am not getting the bank account form.

#

That is what I showed in the above recording video.

sacred brambleBOT
sullen laurel
#

Sorry don't really have the time to watch the video. Did you follow these two steps?

iron ginkgo
#

Yes, I followed that step.

#

I also showed the step into the video. The video is not too much long, its only 3-4 minute.

#

If you please can watch then it will be very easier to understand to you.

naive python
#

Hey! Taking over for my colleague. Let me catch up.

iron ginkgo
#

okay, thank you.

naive python
#

In the video you are sharing, you are passing the external account data..

iron ginkgo
#

No I did not pass the external account data

naive python
iron ginkgo
#

Check this file this is the data I get from my connected account. There are no external account.

naive python
#

Let me do a quick test...

iron ginkgo
#

okay

naive python
#

I just made a test and I see the section to add bank account

naive python
#

Make sure you are enabling the setting in the same account (dashboard and the API key you are using)

iron ginkgo
#

should I need to create the connect account from my stripe dashboard?

naive python
#

No you can create it using the APIs

iron ginkgo
#

Can I call you and share my screen

naive python
#

You can try these requests.

// POST /accounts
{
  type: 'custom',
  business_type: "individual",
  country: 'FR',
  capabilities: {
    card_payments: {requested: true},
    transfers: {requested: true},
  }
}
// POST /account_links
 {
  account: panels[0].id, 
  refresh_url: url, // already set for you 
  return_url: url, // already set for you 
  type: "account_onboarding", // account_onboarding | account_update 
}
naive python
iron ginkgo
#

Can I use this code
public function createBankAccount(){
$link = $this->stripeClient->accountLinks->create([
'account' => 'acct_1NWGKNQm8cyWAX4d',
'refresh_url' => 'https://referr.co.uk',
'return_url' => 'https://referr.co.uk',
'type' => 'account_onboarding',
'collect' => 'eventually_due',
]);
return redirect()->to($link);
}

naive python
#

The guide you are sharing, is for the API I shared with you.

iron ginkgo
#

I am getting confuse.

#

Is there any api available for geeting the required fields for creating bank account based on countries.

#

Suppose if a user from UK, I need the short code from him, if a user from USA I need the routing number from him.

naive python
#

Wait, just to make sure I'm following here, is this another topic/question ?

iron ginkgo
#

leave the above question.

#

I follwed your given api and instruction.

#

Let me record another video for you.

naive python
#

You need to create an AccountLink for the customer in order to collect their bank details for payout, like I shared above.

iron ginkgo
#

For create the account link should I use this php code
$stripe = new \Stripe\StripeClient('sk_test_51IJGrxHPI1TOHdAHhBtMFgGaB5CkwBjkg5YLBKmeWhcEoxrgCmVa5ZlozOb7v96d7v4OnwC38UIudtWmeqPUgm0G00Jpo6p4UB');

$stripe->accountLinks->create([
'account' => '{{CONNECTED_ACCOUNT_ID}}',
'refresh_url' => 'https://example.com/reauth',
'return_url' => 'https://example.com/return',
'type' => 'account_onboarding',
'collect' => 'eventually_due',
]);

#

I will just need to pass the account_id and the urls.

naive python
#

yes

#

You can remove collect: 'eventually_due', for now

iron ginkgo
#

Please watch this video.

#

I tried you way but not works.

naive python
#

I already saw the first part of enabling the settings yes. Did you created an AccountLink ?

iron ginkgo
#

Yes, I created the account link, it alse showed into the video.

#

Check the video from 1:40 Minute

#

Sir, are you still there.

finite rune
#

Hi! I'm taking over from my colleague. Please, give me a moment to catch up.

iron ginkgo
#

okay

finite rune
#

Could you please summarise the latest question for me?

iron ginkgo
#

I implemented stripe onboarding connect account setup into my application. From my application from any countries user can create their connect account and their payout bank account could be from any country. That's why I want stripe will ask their bank account during creating their connect account.

#

From above, I got an instruction for "Enable Manual entry of bank account details"
Follow these steps to allow Stripe to manually collect bank account details from Custom accounts within the form:
Within Connect Settings, under Account types > Custom, select Manage to manage optional features of Connect Onboarding.
Under Collect bank account information for payouts, allow Stripe to collect bank account information by turning on the toggle, and select the box to collect manually-entered account information.

#

I enabled this system and follow the api instruction, but when I am going to create a connect account, I am not asking to input my bank account details.

#

Please watch this video.

#

Did you understand or should I need to explain more?

finite rune
#

I understand the context, thanks. Now, what's exactly your challenge?

iron ginkgo
#

No form coming with asking the bank account details from me.

finite rune
#

Ok, I am not sure you can add the bank account during the onboarding.

iron ginkgo
#

I can not add the bank account during the onboarding.

#

Because I did not asked the bank account information from stripe or the bank account form not comes.

#

Don't you understand what I am saying, I have above video explained step by step.

finite rune
#

Are you onboarding in Test or Live mode?

iron ginkgo
#

In test.

#

If everything goes well, I will turn it to live.

finite rune
#

I see in the video you've enabled it in Live mode. Is it also enabled in Test mode?

iron ginkgo
#

ah here it is. I did not turn it on from my test mode.

#

Silly mistake but got huge problem.

#

You are expert and I must thank you dear.

finite rune
#

Always happy to help!

iron ginkgo
#

I can add bank account during onboarding, now if I want to change or update my bank account. how can I do this?

iron ginkgo
#

can't I do it through API. Because from my application, if user want they can either update their bank account or delete or add any other bank account.

finite rune
iron ginkgo
#

How can I create another bank account, so that user will get the same onboarding page to add their another bank account.

finite rune
#

You might be able to generate the onboarding link again, and then the client will be able to update the account.

iron ginkgo
#

Yes, from there, I can update my default payout bank account. But I can see any option to create a new bank account for payout.

finite rune
#

You mean an additional one?

iron ginkgo
#

yes

finite rune
#

I don't think it's possible at the moment.

iron ginkgo
#

okay, at this moment. I got all my answer. How can I save this thread for future review. I might need this information later.

finite rune
#

I will have to archieve the thread in a few minutes, but I think it's not deleted ever.

iron ginkgo
#

okay thanks. Where from I can view all the archieve thread.

finite rune