Update Customer
This updates an already existing customer's details.
After creating a customer, you might want to update the customer's details.
You simply do this by making post request to the update customer endpoint and passing customerID in the request body along with the other payload you want to update.
Production URL
Staging URL
Here is an example request with sample payload to the staging endpoint.
POST
http://staging.mybankone.com/BankOneWebAPI/api/Customer/UpdateCustomer
Path Parameters
version*
Int
Current version of the API which is 2
Query Parameters
authToken*
Int
Authentication for this request
Request Body
customerID*
String
Customer's ID
BankVerificationNumber*
String
Customer's BVN
EmailNotification*
Boolean
Checks if customer's email notification is on
PhoneNotification*
Boolean
Checks if customer's phone notification is on
FirstName
String
Customer's first name
LastName
String
Customer's last name
String
Customer's email
{
// Response
}
Last updated