Skip to main content

Update Wallet Settings

Configure the low-balance alert threshold. When your balance drops below the threshold, a wallet.funded event is dispatched to your registered webhook endpoint.


Endpoint

POST/v1/wallet/settings

Required permission: wallet:settings:update


Request Body

FieldTypeRequiredDescription
thresholdIntegerBalance level in ₦ that triggers the alert.
enabledBooleanSet to true to activate low-balance notifications, false to silence them.

Response

Returns the updated wallet record.

FieldTypeDescription
balanceIntegerCurrent wallet balance in ₦.
lowThresholdIntegerThe updated alert threshold in ₦.
lowBalanceAlertBooleanCurrent alert active state.

{
"threshold": 10000,
"enabled": true
}