#mahiman_connected-accounts
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/1240224887499653120
๐ 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.
- mahiman_code, 1 hour ago, 3 messages
Hi there!
Can you share the ID (req_xxx) of the failing API request?
https://support.stripe.com/questions/finding-the-id-for-an-api-request
I don't have one right now, I just need what country code and currency is used for UK based bank account to connect with stripe
What APi are you using ?
$stripe = Cartalyst\Stripe\Laravel\Facades\Stripe::make(env('STRIPE_SECRET'));
$account_values = [
'external_account' => [
'object' => 'bank_account',
'country' => $bank_data['country_name'],
'currency' => $bank_data['currency'],
'account_holder_name' => $bank_data['account_holder_name'],
'account_holder_type' => $bank_data['account_holder_type'],
'routing_number' => $bank_data['routing_number'],
'account_number' => $bank_data['account_number']
],
];
$account = $stripe->Account()->update($bank_data['id'], $account_values);
This is the code I'm using
If I pass Country US and Currency USD if works but if I pass UK or GB as country and GBP as currency it doesn't work
๐ taking over for my colleague. Let me catch up.
what is the error you're receiving?
mahiman_connected-accounts