POST
/
customers
/
{customerID}
/
external_accounts
/
{externalAccountID}
/
reactivate
Reactivate an External Account
curl --request POST \
  --url https://api.bridge.xyz/v0/customers/{customerID}/external_accounts/{externalAccountID}/reactivate \
  --header 'Api-Key: <api-key>'
{
  "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

Headers

Idempotency-Key
string

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

Response

200
application/json

Reactivated External Account object

The response is of type object.