Update deposit account

Update a deposit account

Request
path Parameters
accountId
required
string

account unique identifier associated with the deposit account in the Finzly's CRM system

Request Body schema: application/json
required

Account Info

accountName
string

Account name is an unique field.

isStopDebits
boolean

boolean value and it is an optional field. The default value is false.

isCollateralized
boolean

boolean value and it is an optional field. The default value is false.

isDeceasedOwner
boolean

boolean value and it is an optional field. The default value is false.

isLegalHold
boolean

boolean value and it is an optional field. The default value is false.

isEnableNotifications
boolean

boolean value and it is an optional field. The default value is false.

nextStatementDate
string

This is an optional field. The valid date format is in [MM-dd-yyyy]. nextStatementDate is greater than the current date.

statementType
string

This is an optional field. The default value is PDF.

Enum: "PDF" "MT940" "MT950" "ISO" "BAI"
statementFrequency
string

This is an optional field. The default value is MONTHLY.

Enum: "MONTHLY" "QUARTERLY" "HALF_YEARLY" "ANNUALLY"
object (Notification)
Array of objects (DebitCards)
Array of objects (Party)
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

default

Successful

put/v1/bank/account/{accountId}
Request samples
application/json
{
  • "accountName": "test123",
  • "isStopDebits": true,
  • "isCollateralized": true,
  • "isDeceasedOwner": true,
  • "isLegalHold": true,
  • "isEnableNotifications": true,
  • "nextStatementDate": "06-21-2024",
  • "statementType": "PDF",
  • "statementFrequency": "MONTHLY",
  • "notification": {
    },
  • "debitCards": [
    ],
  • "party": [
    ]
}
Response samples
application/json
{
  • "message": "<Reason>",
  • "depositAccount": [
    ]
}