Skip to main content
PUT
Update a bank account

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

bankAccountId
string
required

The ID of the bank account to update.

Example:

"3Ez2Ggn8JP4qQgA"

Body

application/json

Payload for updating bank account details.

name
string
required
Example:

"Updated Bank Name"

accountNumber
string
required
Example:

"123456789012"

addressLine1
string
required
Example:

"Updated Address Line 1"

city
string
required
Example:

"Updated City"

state
string
required
Example:

"ST"

zip
string
required
Example:

"12345"

nickName
string
Example:

"Updated Nickname"

addressLine2
string | null
Example:

"Updated Address Line 2"

phone
string | null
Example:

"1234567890"

Response

Bank account updated successfully.

success
boolean
Example:

true

message
string
Example:

"Bank account updated successfully."