Update customer account

Update a customer account

SecurityoAuth2
Request
path Parameters
customerUID
required
integer

Unique Customer Id

accountUID
required
string

Unique identifier of the account associated with the specified customer. This is a mandatory path parameter and should correspond to the correct account under the provided customer UID.

Example: 101
Request Body schema: application/json
required

Account Info

accountName
string <= 255 characters

Name for the account. Only letters, numbers, and spaces are allowed.

accountNumber
string <= 255 characters

User bank account number.

accountType
string

Bank account type.

Enum: "Deposit" "Loan"
accountSubType
string

Bank account sub type.

Enum: "Checking" "Savings" "Health Savings Account" "CD" "Money Market" "Pseudo" "Credit Card" "Heloc" "Line of Credit" "MoneyMarket" "LineofCredit"
currency
string = 3 characters

Account currency. Currency Code is ISO format.

countryCode
string <= 10 characters

ISO country code.

costCenter
string <= 25 characters

Cost Center associated with the customer entity.

enableOffset
string

Enable offset account. Possible values are 'Yes','No'

fboAccountNumber
string <= 255 characters

The For-Benefit-Of (FBO) account number associated with a legal entity. This field is required when the accountSubType is set to "Pseudo".

systemOfRecords
string

System of records where the account is maintained.

Enum: "Other Core" "External"
routingNumber
string <= 255 characters

Valid routing number / bankId.

masterGl
string <= 100 characters

Master GL number for accounting purposes.

reason
string <= 255 characters

Optional note or reason for account creation.

bankIdType
string

Type of bank identifier.

Enum: "NID" "BIC"
object (V3UpdateAccountRequest_accountFeatures)

Account-level feature toggles and capabilities.

Array of objects (V3CreateAccountRequest_additionalAttributes)

List of additional key-value attributes configured for the account.

Responses
200

OK

400

Bad request

401

You are not authorized to access the resource

403

Accessing the resource you were trying to reach is forbidden

404

The resource you were trying to reach is not found

500

Internal server error

503

Service unavailable

patch/v3/customers/{customerUID}/accounts/{accountUID}
Request samples
application/json
{
  • "accountName": "xyz 123",
  • "accountNumber": "2136565",
  • "accountType": "Deposit",
  • "accountSubType": "Checking",
  • "currency": "USD",
  • "countryCode": "US",
  • "costCenter": "5235666",
  • "enableOffset": "Yes",
  • "fboAccountNumber": "string",
  • "systemOfRecords": "Other Core",
  • "routingNumber": "101206101",
  • "masterGl": "9898965",
  • "reason": "Notes",
  • "bankIdType": "NID",
  • "accountFeatures": {
    },
  • "additionalAttributes": [
    ]
}
Response samples
application/json
{
  • "message": "string",
  • "code": "string",
  • "errors": [
    ]
}