Name Enquiry

Tuition payment through a bank will have an individual initiating the transaction. To access the details of the operator, you can send a request to this endpoint:

Endpoint

{{baseurl}}/ng-bank/name-enquiry

This is a POST request and requires the following parameters:

FieldData TypeDescription
accountNumberStringIdentification numbers attached to the initiating bank account.
currencyStringNGN.
bankCodeStringThis is a code associated with the bank. It’s sometimes referred to as a sort code, routing number, or BIC (Bank Identifier Code)

Your request should look like this:

{
    "currency": "NGN",
    "accountNumber": "string", // Beneficiary account number
    "bankCode": "string" // This is gotten from bank list
}

If your request is successful, you should get this response:

{
    "success": true,
    "statusCode": 200,
    "message": "Name Enquired successfully",
    "data": {
        "sessionId": "string", // you would only get this when the provider is SAFEHAVEN
        "accountNumber": "string",
        "accountName": "string",
        "bankCode": "string",
        "bankName": "string"
    }
}