v1

latestOpenAPI 3.0.22026-07-26128245430.3 KB
Static Memos

Create a Static Memo

Create a Static Memo for the specified customer

post/customers/{customerID}/static_memos

Path parameters

customerIDstring required

A UUID that uniquely identifies a resource

Headers

Idempotency-Keystring required

Request body

developer_fee_percentstring number

The developer fee percent that will be applied to this Virtual Account. The value is a base 100 percentage, i.e. 10.2% is 10.2 in the API.

Example request

{
  "developer_fee_percent": "0.1",
  "source": {
    "currency": "usd",
    "payment_rail": "wire"
  },
  "destination": {
    "currency": "usdc",
    "payment_rail": "polygon",
    "address": "0xdeadbeef"
  }
}

Response

Static Memo object created

idstring

A UUID that uniquely identifies a resource

developer_fee_percentstring number

The developer fee percent that will be applied to this Virtual Account. The value is a base 100 percentage, i.e. 10.2% is 10.2 in the API.

created_atstring date-time

Time of creation of the static memo

Example response

{
  "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"
  }
}