#JoaoVitor
1 messages ยท Page 1 of 1 (latest)
Hello ๐
How can I help?
problem create a Payout return error "ACH payments from BR are not currently supported"
Can you share a request ID where you're seeing this error?
https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center 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.
req_KxYZ7d6mtmIlLQ
That's not a payout request though.
You're trying to set a ACH source to a customer located in BR?
Let's take a step back
what is it that you're trying to do? What's your end-goal?
create a bankaccount for customer and later create PayoutCreate where Destination is me BankAccount.Id
So you want to send money to your customer's bank account?
or do you want to charge your customer's bank account?
send money
We don't support sending money to customer's bank account. The customer object and their bank account can only be charged with Stripe.
If you want to send money, you would need to build an integration using Stripe Connect where your customer's are your connected accounts!
https://stripe.com/docs/connect/collect-then-transfer-guide
here RequestId req_38Hzdbgp1ZaTJo
i create a Account and Update creating ExternalAccount and PayoutCreate send accountId
and stripe return "No such external account: 'acct_1MFfNnQZNrkQuvbQ'
destination parameter requires an external account or a card ID
https://stripe.com/docs/api/payouts/create#create_payout-destination
You're setting an account ID which won't work
You can use this API to retrieve external account list
https://stripe.com/docs/api/external_account_bank_accounts/list
and then pass that in as destination
that is a single-use bank account token
https://stripe.com/docs/api/tokens/create_bank_account
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
here requestId req_bCKHT63qrFUEMd
now create Account and later Create Token (Bank Account) later Create ExternalAccount where (ExternalAccount = tokenId) and send Account.Id for create
are you setting a Stripe-Account header when creating a payout?
Create Payout send externalAccountId
here
You need to set the connected account ID as stripe_account to which the bank account belongs
other error
: 'Cannot create payouts: this account has requirements that need to be collected.. Please provide those fields to re-enable payouts
Have you onboarded the account completely?
It sounds like some requirements are missing
That code doesn't do anything for onboarding ๐
what kind of connected account have you created?
Looks like its an express account
express
You'd want to create an account link and finish onboarding before creating a payout
https://stripe.com/docs/connect/express-accounts#create-link
If you retrieve the account, what is in the currently_due section of its requirements property? https://stripe.com/docs/api/accounts/object#account_object-requirements-currently_due
Our accounts require certain info before they can do things like make charges or take payouts
@austere mulch