v1

latestOpenAPI 3.1.02026-07-26165182724.7 KB
wallets

Whitelist Destination Address

Whitelist a destination address for a business

post/business/whitelist-address

Request body

businessIdstring uuid required

Unique Id of the business for whom this wallet is being created

addressstring required

The address to whitelist

currency'BTC' | 'ETH' | 'USDT' | 'USDC' | 'BNB' | 'MATIC_POLYGON' | 'USDC_POLYGON' required

The currency of the address

network'BTC' | 'ETH' | 'BSC' | 'POLYGON' required

The network of the address

labelstring required

The label of the address

Example request

{
  "address": "tb1qlj64u6fqutr0xue85kl55fx0gt4m4urun25p7q",
  "currency": "BTC",
  "network": "BTC",
  "label": "Testnet Address"
}

Response

success

idstring required
statusstring required
addressstring required
currencystring
labelstring

Example response

{
  "id": "358f5e37-4e15-424e-9479-3037cf68989a",
  "status": "PENDING_ACTIVATION",
  "address": "tb1qlj64u6fqutr0xue85kl55fx0gt4m4urun25p7q",
  "currency": "BTC",
  "label": "Testnet Address",
  "network": {
    "name": "Bitcoin Testnet 3"
  }
}