#wiserlance_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/1422203826466983988
📝 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.
- wiserlance_api, 3 days ago, 12 messages
- wiser_connect-integration, 3 days ago, 22 messages
want that the seller (Service Provider) can withdraw the money to their bank account how can they do this procedure now ?
This is called payout in Stripe (if I understood well your use case)
https://docs.stripe.com/connect/payouts-connected-accounts
When I am hitting
public function payout()
{
$stripe = new \Stripe\StripeClient(env('STRIPE_SECRETE_KEY'));
$payout = $stripe->payouts->create([
'amount' => 1100,
'currency' => 'usd',
]);
dd($payout);
}
and I get this response
Sorry, you don't have any external accounts in that currency (usd).
I am referring the details from here
https://docs.stripe.com/api/payouts/create
You should make the request for the Connected Account, right ?
Yes
Then you should pass the Connected Account header in order to request payout for them.
https://docs.stripe.com/connect/authentication?examples=products#stripe-account-header
Wait for a while I am checking the link
Hi, taking over as my teammate needs to step away. Let me catch up.
Please do not share your secret api key here
I deleted the previous message shared as it included a sensetive data
Opps, I thought I deleted the scretkey before passing , Should I pass the request again ?
Multi-currency settlements are only supported for select countries: https://docs.stripe.com/connect/multicurrency-settlement . By default, since your account is in Italy, https://docs.stripe.com/payouts?account-country=IT it can only payout is EUR.
That is not supported
Although we do have gloabl payouts: https://docs.stripe.com/global-payouts that is in Public Preview which is only supported in the US and UK
I have create the account with EUR but still I am getting the same error
Sorry, you don't have any external accounts in that currency (eur).
if you want then I will provide you the acctID and the procedure I am calling
For accounts in Italy, this is not supported
We are Ireland based company
we want process to be in US is there anyway to process this ?
If you do not have an entity on the US, no.
You can process payment in the US, but you're asking about payouts
I am asking for the payout like I want to create the account in US so if my stripe is in EUR it will create all the accounts in EUR of all the customers ?
What does account and customers mean in this case? If there business in based in the US, you can create a US account and add a US bank to get usd payouts. With Italy based account, you can still create payments in usd but they will settle in EUR and paid out in EUR.