#vito_api

1 messages · Page 1 of 1 (latest)

queen matrixBOT
#

👋 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.

karmic parrot
#

Do you have an example of the charges?

nocturne wharf
#

can I share a link

karmic parrot
#

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

nocturne wharf
#

thank you

karmic parrot
#

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",
        ],
queen matrixBOT
#

@magic helm looks like you're in the wrong place, this thread is for someone else's question.

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.

nocturne wharf
#

@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?

karmic parrot
#

@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

nocturne wharf
#

can you share link for test cards or banks please

karmic parrot
#

I'm not sure I follow

#

We have test data for bank accounts and debit cards here

nocturne wharf
#

I attacehd a bank with this routing number 110000000 to the connected account and no luck

karmic parrot
#

All the bank accounts us the routing number 110000000

#

Can you be more specific?

nocturne wharf
#

000123456789

karmic parrot
#

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",
  ],
nocturne wharf
#

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?

karmic parrot
#

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

nocturne wharf
#

I'll try to re-create a new account

#

one sec

queen matrixBOT