#vito_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/1363916212546830379
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Do you have an example of the charges?
can I share a link
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
here is the event: https://dashboard.stripe.com/test/events/evt_3RGN4DGTMcrNIU4k3GHLKcVM
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Dashboard links are not useful to us here. It isn't our dashboard. But the IDs at the end of those links we can use.
I'm taking a look at the charge ID in the event data
thank you
The bank account associated with this Connected Account does not support instant payouts
We show you how you can check eligibility here
Specifically, the attached external account object should have
"available_payout_methods": [
"standard",
"instant"
],
But if you look at the most recent update request, you can see in the linked account ba_1RGMYgGdrEssf2o1DqkvGyiF we only see the following
available_payout_methods: [
"standard",
],
@magic helm looks like you're in the wrong place, this thread is for someone else's question.
- If you have your own thread please chat there.
- If you have a question or a followup to a closed thread use one of the buttons in https://discord.com/channels/841573134531821608/842637025524842496 to get help (we don't reopen closed threads).
Note that posting inappropriate messages in other people's threads is against the rules. No worries if this was just an honest mistake, but anyone who violates the rules multiple times will be removed from this server.
@karmic parrot Help me understand does the Connected Account need to have an external account that supports instant payouts in order for the funds to be available for instant payout?
@magic helm if you continue to post in someone else's thread I will have to ban you from the server
@nocturne wharf Yes we can only offer instant payouts if the bank behind the account or debit card support it
can you share link for test cards or banks please
I attacehd a bank with this routing number 110000000 to the connected account and no luck
000123456789
Okay I just tested creating an account with the tok_visa_debit_us_transferSuccess token for an External Account
In the API response I can see
available_payout_methods: [
"standard",
"instant",
],
I'm testing instant payouts. I got it working with a Canadian account, but not with a US Connected Account. I’ve attached a screenshot—none of the external accounts are marked as "Instant eligible."
Could it be that I’m missing a setting in the Connected Account configuration?
But I also used the same data as you and I got access to the instant payout method:
# Create a bank token
bank_token = stripe.Token.create(
bank_account={
"country": "US",
"currency": "usd",
"account_holder_name": "Test Account",
"account_holder_type": "individual",
"routing_number": "110000000",
"account_number": "000123456789",
}
)
# Create the connected account
account = stripe.Account.create(
type="custom",
country="US",
email="test@example.com",
capabilities={
"card_payments": {"requested": True},
"transfers": {"requested": True},
},
business_type="individual",
)
# Attach the external account (test token)
stripe.Account.create_external_account(
# account["id"], external_account="tok_visa_debit_us_transferSuccess"
account.id,
external_account=bank_token.id,
)
Our documentation does not call out any specific settings you need to enable for this