#akshay-santoki_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/1303577982962630668
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
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
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
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
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
my stripe dashboard in display available balance then why not available in api?
i know
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
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.
You can find the available payout timestamp on the available_on property of balance transaction on the charge object of the Payment Intent: https://docs.stripe.com/api/balance_transactions/object#balance_transaction_object-available_on
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
We don't do conference call in this channel
connect on Google meet using meeting link?
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
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
okay
Hello @west inlet "https://api.stripe.com/v1/balance_transactions?limit=10" this api in my today transaction balance data was can not available.
So, can you please give me one api for get my all transaction balance and get his available time.
yes
my last transaction balance does not available in balance transaction api
@willow ocean @west inlet
Please don't mention every time
Can you look at the Balance Transaction and check its available_on?
What do you mean? You are calling List Balance Transaction, right?
yes
Which record is missing there?
£750 available for instant payout and i am able to payout from stripe dashboard. So, why payout api return error message like balance_insufficient.
this 2 records
Sorry this is going back to Payout API. We are talking about Balance Transaction API
payout api was return insufficient balance error
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
can i create payout of my balance?
in stripe dashboard in display balance but payout api was return insufficient balance.
Yes but there is pending balance and available balance
You want to figure it out how much of each balance first
but 750 is available instantly right?
i am able to 750 payout from stripe website. but not able from api.
That' Instant Payout, a different feature
Instant Payout is available regardless of the Balane
instant payout is possible with api?
no
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.
Sure
is that possible to Create payout for various scenario: main account -> payout to connected account in external bank account?
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
Is that possible to send amount to external bank account from my stripe account? using bank account details.
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
For ex. i am send £50 to customer bank account based on bank account details. so, how that is possible?
you can't send money to your customer, you can only send to your Connected Account
customer != Connected Account
okay
For Payout using connected external bank account, After creating connected account, How enable payout service using api?
You can either let the Automatic Payout happens, or use Manual Payout
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
Sorry that's a bit hard to understand. You mean you created a Connected Account but its payout is disabled?
How did you create the Connected Account? Did you go over the Connect Onboarding flow?
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?
You need to create an Account Link URL, and then open that link to finish Account Onboarding. See https://docs.stripe.com/connect/express-accounts#create-link
always onboarding step execute manually in connected account?
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?