#akshay-santoki_api

1 messages · Page 1 of 1 (latest)

lone sandalBOT
#

👋 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/1303577982962630668

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

stable yacht
#

in stripe dashboard display available balance is 967 but when i am create payout then insufficient balance error return from payout api. i am working with test mode.

#

??

#

@west inlet

west inlet
#

Thanks for waiting! Looking into it now

#

As mentioned in the response of https://dashboard.stripe.com/test/logs/req_GpizAWzih68Efv, there wasn't sufficient balance in your Stripe account for payout.

You'd need to check the available balance of your account before paying out: https://docs.stripe.com/api/balance/balance_retrieve

In test mode, you can use bypass pending balance to test the payout feature: https://docs.stripe.com/testing#available-balance

Use test cards to validate your Stripe integration without moving real money. Test a variety of international scenarios, including successful and declined payments, card errors, disputes, and bank authentication. You can also test non-card payment methods and redirects.

#

Which account do you plan to make a payout? The request showed acct_1MfjkVF3YcvVAHPd which didn't have sufficient balance

#

If you wish to make a payout from a connected account, you should include Stripe-Account header as connected account ID in your request

stable yacht
west inlet
#

The screenshot is the total of pending and available balance

#

You should use the API to check the available balance that can be made for payout

#

Not the Dashboard

stable yacht
#

okay

#

i am charge payment now £1000. Then when £1000 is available for payout?

#

Hello @west inlet can we connect on Google meet or other meeting for me.

west inlet
#

We don't do conference call in this channel

stable yacht
#

connect on Google meet using meeting link?

lone sandalBOT
west inlet
#

We only provide chat/text support in this channel. If you wish to get the call support, I'd recommend reaching out to Support at https://support.stripe.com/contact

stable yacht
#

okay

#

So, can you please give me one api for get my all transaction balance and get his available time.

willow ocean
#

👋 taking over here

#

what do you mean by "can not available"?

stable yacht
#

yes

#

my last transaction balance does not available in balance transaction api

#

@willow ocean @west inlet

willow ocean
#

Please don't mention every time

#

Can you look at the Balance Transaction and check its available_on?

stable yacht
#

ok

#

but balance transaction record was missing in api response.

willow ocean
#

What do you mean? You are calling List Balance Transaction, right?

stable yacht
#

yes

willow ocean
#

Which record is missing there?

stable yacht
#

£750 available for instant payout and i am able to payout from stripe dashboard. So, why payout api return error message like balance_insufficient.

stable yacht
willow ocean
#

Sorry this is going back to Payout API. We are talking about Balance Transaction API

stable yacht
#

payout api was return insufficient balance error

willow ocean
#

So your Test Payment will have a Balance Transaction, its Id is txn_xxxx and has an available_on property

#

You want to see when does that property tell first

stable yacht
#

can i create payout of my balance?

#

in stripe dashboard in display balance but payout api was return insufficient balance.

willow ocean
#

Yes but there is pending balance and available balance

#

You want to figure it out how much of each balance first

stable yacht
#

but 750 is available instantly right?

#

i am able to 750 payout from stripe website. but not able from api.

willow ocean
#

That' Instant Payout, a different feature

#

Instant Payout is available regardless of the Balane

stable yacht
#

instant payout is possible with api?

willow ocean
#

no

stable yacht
#

okay

#

How many take time gbp balance available for payout. like 1 hour, 2 hour, etc ?

#

If exact time not available then give me estimated time.

willow ocean
#

The available_on properties will tell you exactly that

#

it depends

stable yacht
#

okay

#

1 more question available. so, can i ask in this conversation?

willow ocean
#

Sure

stable yacht
#

is that possible to Create payout for various scenario: main account -> payout to connected account in external bank account?

willow ocean
#

When you move fund between Platform and Connected Account, it's not called payout

#

Only when you move funds to the external acconts of either Platform or Connected Account, it's called Payout

stable yacht
#

Is that possible to send amount to external bank account from my stripe account? using bank account details.

willow ocean
#

You can send fund from a Stripe Account balance, to that Stripe Account's external account

#

ie. Platform balance to Platform external account, or Connected Account balance to Connected Account external account

stable yacht
#

For ex. i am send £50 to customer bank account based on bank account details. so, how that is possible?

willow ocean
#

you can't send money to your customer, you can only send to your Connected Account

#

customer != Connected Account

stable yacht
#

okay

#

For Payout using connected external bank account, After creating connected account, How enable payout service using api?

willow ocean
#

You can either let the Automatic Payout happens, or use Manual Payout

stable yacht
#

i think you can't understand my question. i am create manually payout but connected account in payout was disable. So, how enable payout in connected account using api?

#

can you send me parameters for create connected account with external bank account and enable payout. i have create individual connected account not a business account.

#

Hello

willow ocean
#

Sorry that's a bit hard to understand. You mean you created a Connected Account but its payout is disabled?

stable yacht
#

yes

#

So, how enable connected account payout using api?

willow ocean
#

How did you create the Connected Account? Did you go over the Connect Onboarding flow?

stable yacht
#

const account = await stripeInstance.accounts.create({
type: 'express', // Express or Standard
country: 'GB',
email: 'akshay@example.com', // Replace with the connected account's email
business_type: 'individual', // Or 'company', depending on the account
default_currency: 'gbp',
capabilities: {
card_payments: { requested: true }, // Request ability to accept card payments
transfers: { requested: true }, // Request ability to make payouts
},
individual: {
first_name: 'Akshay',
last_name: 'Santoki 1',
email: 'akshay@example.com',
// address: {
// line1: '123 Example Street',
// city: 'London',
// postal_code: 'E1 6AN',
// country: 'GB',
// },
// dob: {
// day: 5,
// month: 7,
// year: 2002,
// },
// phone: '1234567890',
},
// business_profile: {
// mcc: '5699',
// url: 'https://test.com/',
// },
external_account: {
object: 'bank_account',
country: 'GB',
currency: 'gbp',
account_number: '00012345', // Replace with actual account details
sort_code: '108800', // Example sort code
},
settings: {
payouts: {
schedule: {
interval: 'manual',
},
},
},
});

#

any issue in my code or any other parameter required for connected account payout?

willow ocean
stable yacht
#

always onboarding step execute manually in connected account?

willow ocean
#

Yes

#

The Connected Account owner would need to go over it

stable yacht
#

okay

#

->Connected account means my business partner, right?

#

->In connected account, for enable payout, manually add buisness information, verify and accept terms and conditions, right?

#

->I have create payout with connected account and add external bank account in connected account then payout amount will be move to stripe account or external bank account?