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
| Name | Data Type | Description | Mandatory/Optional |
|---|---|---|---|
| TransactionTrackingRef | String | A way to track an account to show it has already been created. | Mandatory |
| AccountOpeningTrackingRef | String | The existing tracking reference tied to the account | Mandatory |
| CustomerID | String | Existing customer ID the account should be linked to | Mandatory |
| ProductCode | String | Code to be gotten from GetProduct API response or CBA | Mandatory |
| String | Customers email address | Mandatory | |
| BVN | String | Customer's Bank Verification Number | Mandatory |
| AccountName | String | Customers account name | Mandatory |
| AccountOfficerCode | String | Code to be gotten from GetAccountOfficerAPI response or CBA | Mandatory |
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
Updated about 5 hours ago
