#shaharyarilyas
1 messages · Page 1 of 1 (latest)
Hello! I wish I could help, but this chat is focused on developers and technical questions. Our support team will be able to assist you better than I can: https://support.stripe.com/contact/email
Great, have you asked Stripe support about this feature?
Or do you have a technical question about this?
Maybe you're looking for this documentation? https://stripe.com/docs/connect/account-balances#automatically-debit-connected-accounts
here, debit negative balance not showing
Right... can you answer my questions above?
which one?
All of them.
no, but some of my custom accounts have this feature enabled
i integrated this already but that didn't enabled debit negative balance
So what is your question exactly?
this feature is not enabled for some custom accounts. did I miss anything? Here is my code:
type: "custom",
country: "GB",
email: payload.email.toLowerCase(),
business_type: "company",
business_profile: {
name: payload.business_profile.name,
url: payload.business_profile.url,
mcc: payload.business_profile.mcc,
},
external_account: {
object: "bank_account",
country: "GB",
currency: "gbp",
account_holder_name: payload.external_account.account_holder_name,
account_number: payload.external_account.account_number,
routing_number: payload.external_account.routing_number,
},
capabilities: {
transfers: { requested: true },
card_payments: { requested: true },
},
tos_acceptance: {
ip,
date: Math.round(new Date().getTime() / 1000),
service_agreement: "full",
},
settings: {
payouts: {
debit_negative_balances: true,
schedule: { interval: "manual" },
},
payments: {
statement_descriptor: payload?.settings?.payments?.statement_descriptor,
},
branding: {
logo: uploadLogos[0].id,
icon: uploadLogos[1].id,
},
},
});```
So you want this enabled but it's not enabled on some accounts and your question is why is it not enabled on some accounts?
yes
Can you give me an example account ID where it's not enabled but you expect it to be enabled?
its a custom test account id : acct_1NwtCCECEaBBnxs3
Looking, hang on...
It appears to be enabled as far as I can tell. If you retrieve this account from the API what value are you seeing for debit_negative_balances?
"debit_negative_balances": true, < Looks enabled to me.
We can't really help with the Dashboard here. We're focused on the API, code, and developer questions. If you need help with the Dashboard you should talk to Stripe support.
no problem but can you tell what problem is it