POST
/
customers
/
{customerID}
/
static_memos
Create a Static Memo
curl --request POST \
  --url https://api.bridge.xyz/v0/customers/{customerID}/static_memos \
  --header 'Api-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "developer_fee_percent": "0.1",
  "source": {
    "currency": "usd",
    "payment_rail": "wire"
  },
  "destination": {
    "currency": "usdc",
    "payment_rail": "polygon",
    "address": "0xdeadbeef"
  }
}'
{
  "id": "<string>",
  "developer_fee_percent": "0.1",
  "source_deposit_instructions": {
    "currency": "usd",
    "payment_rails": [
      "ach_push",
      "wire"
    ],
    "deposit_message": "EXAMPLE_MEMO_MESSAGE",
    "bank_name": "Lead Bank",
    "bank_address": "1801 Main St., Kansas City, MO 64108",
    "bank_beneficiary_name": "Bridge Ventures Inc",
    "bank_beneficiary_address": "21750 Hardy Oak Blvd, Ste 104 PMB 77950, San Antonio, Texas, 78258-4946",
    "bank_account_number": "123456789",
    "bank_routing_number": "87654321"
  },
  "destination": {
    "currency": "usdc",
    "payment_rail": "polygon",
    "address": "0xdeadbeef"
  },
  "created_at": "2023-11-07T05:31:56Z"
}

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

200 - application/json

Static Memo object created

The response is of type object.