v1

latestOpenAPI 3.1.02026-07-24620123.6 KB

Account Resolver

Resolve and verify account details across multiple payment methods and currencies. This endpoint routes the request to the appropriate provider based on the currency and method combination, returning a normalised account name and ID.

post/api/b2b/utilities/account/resolve

Request body

accountNumberstring required
currencystring required

Currency must be in ISO 4217 format.

methodstring required

Must be one of: bank, momo, nuban, iban, paybill, till

bankCodestring

Required for bank method

momoOperatorstring

Required for momo methods

Response

200

successboolean

Example response

{
  "success": true,
  "data": {
    "accountId": "8014311",
    "accountName": "Wayne Industries"
  }
}