Options for customizing account balances and payout settings for a Stripe platform’s connected accounts.
Attributes
- objectstring
String representing the object’s type. Objects of the same type share the same value.
- paymentsobject
Settings that apply to the Payments Balance.
The Balance Setting object
{ "object": "balance_settings", "payments": { "debit_negative_balances": true, "payouts": { "schedule": { "interval": "daily" }, "statement_descriptor": null, "status": "enabled" }, "settlement_timing": { "delay_days": 2 } }}Updates balance settings for a given connected account. Related guide: Making API calls for connected accounts
Parameters
- paymentsobject
Settings that apply to the Payments Balance.
Returns
Returns the updated balance settings object for the account that was authenticated in the request.
Response
{ "object": "balance_settings", "payments": { "debit_negative_balances": true, "payouts": { "schedule": { "interval": "monthly", "monthly_payout_days": [ 5, 20 ] }, "statement_descriptor": null, "status": "enabled" }, "settlement_timing": { "delay_days": 2 } }}Retrieves balance settings for a given connected account. Related guide: Making API calls for connected accounts
Parameters
No parameters.
Returns
Returns a balance settings object for the account specified in the request.
Response
{ "object": "balance_settings", "payments": { "debit_negative_balances": true, "payouts": { "schedule": { "interval": "daily" }, "statement_descriptor": null, "status": "enabled" }, "settlement_timing": { "delay_days": 2 } }}