PUT
/
customers
/
{customerID}
/
liquidation_addresses
/
{liquidationAddressID}
Update a Liquidation Address
curl --request PUT \
  --url https://api.bridge.xyz/v0/customers/{customerID}/liquidation_addresses/{liquidationAddressID} \
  --header 'Api-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "external_account_id": "<string>",
  "custom_developer_fee_percent": "0.1",
  "destination_ach_reference": "<string>",
  "destination_wire_message": "<string>",
  "destination_sepa_reference": "<string>",
  "destination_spei_reference": "<string>",
  "return_address": "<string>"
}'
{
"id": "la_123",
"chain": "ethereum",
"customer_id": "cust_123",
"external_account_id": "ext_123",
"address": "0x4d0280da2f2fDA5103914bCc5aad114743152A9c",
"currency": "usdc",
"destination_payment_rail": "wire",
"destination_currency": "usd",
"destination_wire_message": "a wire message",
"state": "active",
"created_at": "2023-11-22T21:31:30.515Z",
"updated_at": "2023-11-22T21:31:30.515Z"
}

Authorizations

Api-Key
string
header
required

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42
liquidationAddressID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Body

application/json

Liquidation Address details to be updated

The body is of type object.

Response

200
application/json

Updated Liquidation Address object

The response is of type object.