Skip to main content
DELETE
/
v1
/
wallet
/
whitelist
Remove Addresses from Whitelist
curl --request DELETE \
  --url https://api.example.com/v1/wallet/whitelist \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'x-client-key: <x-client-key>' \
  --data '
{
  "walletIds": [
    {}
  ]
}
'
{
  "success": true
}
Remove previously whitelisted addresses. Provide one or more whitelist entry IDs to remove.

Authentication

x-client-key
string
required
Your public API client key
Authorization
string
required
Bearer token for authentication

Request Body

walletIds
array
required
Array of whitelist entry IDs to remove (obtained from GET response)

Response

success
boolean
Whether removal was successful
{
  "success": true
}
curl -X DELETE "https://dev.api.baanx.com/v1/wallet/whitelist" \
  -H "x-client-key: YOUR_CLIENT_KEY" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "walletIds": [
      "d7ed0d12-270c-4491-b1a4-bebf2cc42b5c"
    ]
  }'