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.

We have a Production URL and Staging URL you are advised to use the staging during development.

Production URL

http://api.mybankone.com/BankOneWebAPI/api/Customer/UpdateCustomer/version?authToken={{your_authtoken}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/Customer/UpdateCustomer/version?authToken={{your_authtoken}}

Here is an example request with sample payload to the staging endpoint.

POST http://staging.mybankone.com/BankOneWebAPI/api/Customer/UpdateCustomer

Path Parameters

Name
Type
Description

version*

Int

Current version of the API which is 2

Query Parameters

Name
Type
Description

authToken*

Int

Authentication for this request

Request Body

Name
Type
Description

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

Email

String

Customer's email

{
    // Response
}

Last updated