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

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

Body

application/json

Liquidation Address object to be created

The body is of type object.

Response

201
application/json

Liquidation Address object created

The response is of type object.