Update Account API

Update business wallet/account details and settlement settings.

Endpoint Information

POST https://api.moolre.com/open/account/update

To test in sandbox, use https://sandbox.moolre.com/open/account/update instead.

Authentication & Headers

Header NameTypeRequiredDescription
X-API-USERstringYesYour Moolre username.
X-API-KEYstringYesYour API Key. (Not required in Sandbox)

Request Parameters

ParameterTypeRequiredDescription
typeintegerYesMust be 1.
accountnumberstringYesThe account number you want to update.
accountnamestringNoUpdated business name.
apibooleanNoIndicates if the account supports API transactions.
callbackstringNoWebhook URL for callbacks.
settlementobjectNoSettlement details object (currency, frequency, channel, recipient, sublist).

Response Examples

200 - Success

Account updated successfully.

{
  "status": "1",
  "code": "WCU02",
  "message": "Account Updated Successfully",
  "data": {
    "status": 1,
    "accountnumber": "100000157257",
    "accountname": "My Business PLC",
    "paymentid": "0757257",
    "api": 0,
    "callback": "https://nocall.com/noend",
    "settlement": {
      "currency": "GHS",
      "frequency": "1",
      "channel": "1",
      "recipient": "0246798090",
      "sublist": "300303"
    },
    "secret": "bcec3865-bea1-4a99-8e70-c6a434cac757"
  },
  "go": null
}

← Back to AI Documentation Index | View Full API Reference