Add Account to Customer

This endpoint is to add another account to an existing customer

Overview

This endpoint is to add another account to an existing customer

Required Payload

NameData TypeDescriptionMandatory/Optional
TransactionTrackingRefStringA way to track an account to show it has already been created.Mandatory
AccountOpeningTrackingRefStringThe existing tracking reference tied to the accountMandatory
CustomerIDStringExisting customer ID the account should be linked toMandatory
ProductCodeStringCode to be gotten from GetProduct API response or CBAMandatory
EmailStringCustomers email addressMandatory
BVNStringCustomer's Bank Verification NumberMandatory
AccountNameStringCustomers account nameMandatory
AccountOfficerCodeStringCode to be gotten from GetAccountOfficerAPI response or CBAMandatory

Expected Request

{ 
"TransactionTrackingRef": "string", 
"AccountOpeningTrackingRef": "string", 
"CustomerID": "string", 
"ProductCode": "string", 
"Email": "string", 
"BVN": "string", 
"AccountName": "string", 
"AccountOfficerCode": "string" 
} 

Expected Response

If the request is successful, it returns a status code of 200 with a response body.

{   "IsSuccessful": true,   "CustomerIDInString": null,   "Message": "Update Successful",   "TransactionTrackingRef": null,   "Page": null}

API Reference Add Account To Customer