The Balance Setting object ​
Attributes ​
object(string) String representing the object’s type. Objects of the same type share the same value.payments(object) Settings that apply to the Payments Balance.payments.debit_negative_balances(boolean, nullable) A Boolean indicating if Stripe should try to reclaim negative balances from an attached bank account. See Understanding Connect account balances for details. The default value isfalsewhen controller.requirement_collection isapplication, which includes Custom accounts, otherwisetrue.payments.payouts(object, nullable) Settings specific to the account’s payouts.payments.payouts.minimum_balance_by_currency(object, nullable) The minimum balance amount to retain per currency after automatic payouts. Only funds that exceed these amounts are paid out. Learn more about the minimum balances for automatic payouts.payments.payouts.schedule(object, nullable) Details on when funds from charges are available, and when they are paid out to an external account. See our Setting Bank and Debit Card Payouts documentation for details.payments.payouts.schedule.interval(enum, nullable) How frequently funds will be paid out. One ofmanual(payouts only created via API call),daily,weekly, ormonthly. Possible enum values:dailyStripe automatically sends money to your bank account dailymanualYou manually send funds to your bank accountmonthlyStripe automatically sends money to your bank account monthlyweeklyStripe automatically sends money to your bank account weekly
payments.payouts.schedule.monthly_payout_days(array of integers, nullable) The day of the month funds will be paid out. Only shown ifintervalis monthly. Payouts scheduled between the 29th and 31st of the month are sent on the last day of shorter months.payments.payouts.schedule.weekly_payout_days(array of enums, nullable) The days of the week when available funds are paid out, specified as an array, for example, [monday,tuesday]. Only shown ifintervalis weekly. Possible enum values:mondaySelect Monday as one of the weekly payout daystuesdaySelect Tuesday as one of the weekly payout dayswednesdaySelect Wednesday as one of the weekly payout daysthursdaySelect Thursday as one of the weekly payout daysfridaySelect Friday as one of the weekly payout days
payments.payouts.statement_descriptor(string, nullable) The text that appears on the bank account statement for payouts. If not set, this defaults to the platform’s bank descriptor as set in the Dashboard.payments.payouts.status(enum) Whether the funds in this account can be paid out. Possible enum values:disabledFunds in this account cannot be paid out.enabledFunds in this account can be paid out.
payments.settlement_timing(object) Settings related to the account’s balance settlement timing. See Balances and settlement time to learn more.payments.settlement_timing.delay_days(integer) The number of days charge funds are held before becoming available.payments.settlement_timing.delay_days_override(integer, nullable) The number of days charge funds are held before becoming available. If present, overrides the default, or minimum available, for the account.payments.settlement_timing.start_of_day(object, nullable) Customized start of day configuration for automatic payouts to group and send payments in local timezones with a customized day starting time. For details, see our Customized start of day documentation.payments.settlement_timing.start_of_day.hour(integer) Hour at which the customized start of day begins according to the given timezone. Must be a supported customized start of day hour.payments.settlement_timing.start_of_day.minutes(integer) Minutes at which the customized start of day begins according to the given timezone. Must be either 0 or 30.payments.settlement_timing.start_of_day.timezone(string) Timezone for the customized start of day. Must be a supported customized start of day timezone.
The Balance Setting object ​
json
{
"object": "balance_settings",
"payments": {
"debit_negative_balances": true,
"payouts": {
"minimum_balance_by_currency": {
"usd": 1500,
"cad": 8000
},
"schedule": {
"interval": "weekly",
"weekly_payout_days": [
"monday",
"wednesday"
]
},
"statement_descriptor": null,
"status": "enabled"
},
"settlement_timing": {
"delay_days_override": 3,
"delay_days": 3
}
}
}