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
}

Documentation Index

Fetch the complete documentation index at: https://docs.baanx.com/llms.txt

Use this file to discover all available pages before exploring further.

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"
    ]
  }'