Update Account Tier2

This updates an account tier

To update an account tier you need to first build the complete update account tier 2 endpoint by by passing authtoken and version to the url query params.

Then you make a post request to the complete update account tier 2 endpoint by passing AccountNumber, AccountTier, SkipAddressVerification, CustomerID and FullName in the request body

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/Account/UpdateAccountTier2/{{version}}?authtoken={{your_authtoken}}

Staging URL

http://staging.mybankone.com/BankOneWebAPI/api/Account/UpdateAccountTier2/{{version}}?authtoken={{your_authtoken}}

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

POST http://staging.mybankone.com/BankOneWebAPI/api/Account/UpdateAccountTier2

Path Parameters

Name
Type
Description

version*

String

Version for this API is 2

authtoken*

String

Institution code to get limits for. Gotten after successful set up on Bankone platform.

Request Body

Name
Type
Description

AccountNumber*

String

Customer's account number

AccountTier*

Int

New account tier you want to update account to

SkipAddressVerification*

Boolean

Checks if the customer address is verified

CustomerID*

String

Customer's Identification Number

FullName*

String

Customer's Fullname

{
    "Payload": {
        "AccountNumber": "00550012000001820",
        "CustomerID": "1764",
        "FullName": "Odu David",
        "CreationMessage": null
    },
    "Errors": [],
    "HasErrors": false,
    "Code": 0,
    "Description": "Update Successful",
    "IsSuccessful": true
}

Last updated