PUT
/
customers
/
{customerID}
/
external_accounts
/
{externalAccountID}
Update an External Account
curl --request PUT \
  --url https://api.bridge.xyz/v0/customers/{customerID}/external_accounts/{externalAccountID} \
  --header 'Api-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "address": {
    "street_line_1": "<string>",
    "street_line_2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "postal_code": "<string>",
    "country": "<string>"
  },
  "account": {
    "checking_or_savings": "checking",
    "routing_number": "<string>"
  }
}'
{
"id": "<string>",
"customer_id": "<string>",
"currency": "usd",
"bank_name": "<string>",
"account_owner_name": "<string>",
"last_4": "<string>",
"account_type": "us",
"iban": {
"bic": "<string>",
"country": "<string>",
"last_4": "<string>"
},
"account": {
"routing_number": "<string>",
"last_4": "<string>",
"checking_or_savings": "checking"
},
"swift": {
"account": {
"bic": "<string>",
"country": "<string>",
"last_4": "<string>"
},
"address": {
"street_line_1": "<string>",
"street_line_2": "<string>",
"city": "<string>",
"state": "<string>",
"postal_code": "<string>",
"country": "<string>"
},
"category": "<string>",
"purpose_of_funds": [
"<string>"
],
"short_business_description": "<string>"
},
"clabe": {
"last_4": "<string>"
},
"account_owner_type": "individual",
"first_name": "<string>",
"last_name": "<string>",
"business_name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"active": true,
"beneficiary_address_valid": true
}

Authorizations

Api-Key
string
header
required

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42
externalAccountID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Body

application/json

External Account details to be updated

The body is of type object.

Response

200
application/json

External Account object updated

The response is of type object.