#yaromyr_connect-ach-capbility
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/1460330427150499840
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi ๐
Is this an intent-first or deferred intent integration?
What kind of funds flow are you using? Direct Charge, Destination, Separate Charge and Transfer?
Looking at the Payment Method Configuration you provided (pmc_1MWc682EeR60tVpYD7rbrJ4e), I can see that ACH debit is off because you have not requested the capability for the Connected Account
Hi!
We use Direct Charge and intent-first
us_bank_account: {
available: false, <-- This is what matters here
display_preference: {
overridable: true,
preference: "on",
value: "on"
}
},
Okay so the Connected Account is a Custom Account without access to the Dashboard, so we don't recommend Direct Charges. But, in this case, the problem is you have not requested the necessary capability to enable this Account to accept US bank payments.
You need to update the Account and set capabilities.us_bank_account_ach_payments to {requested: true}
That will trigger some validations on the Connected Account and we may require some additional KYC information before activating the capability
You can listen for the webhook event account.updated on acct_1LVJUP2EeR60tVpY that will notify you both of when we need more information (by updating the requirements property) and when the capability is active.
Oh. Ok, will try that.
Thank you!