Update a cash balance's settings ​
Changes the settings on a customer’s cash balance.
Returns ​
The customer’s cash balance, with the updated settings.
Parameters ​
settings(object, optional) A hash of settings for this cash balance.settings.reconciliation_mode(enum, optional) Controls how funds transferred by the customer are applied to payment intents and invoices. Valid options areautomatic,manual, ormerchant_default. For more information about these reconciliation modes, see Reconciliation. Possible enum values:automaticmanualmerchant_default
curl
curl https://api.stripe.com/v1/customers/{{CUSTOMER_ID}}/cash_balance \
-u "<<YOUR_SECRET_KEY>>" \
-d "settings[reconciliation_mode]=manual"Response ​
json
{
"object": "cash_balance",
"available": null,
"customer": "cus_Ob4Xiw8KXOqcvM",
"livemode": false,
"settings": {
"reconciliation_mode": "manual",
"using_merchant_default": false
}
}