Skip to main content
DELETE
/
v1
/
wallet
/
internal
/
card_linked
Unlink Wallet from Card
curl --request DELETE \
  --url https://api.example.com/v1/wallet/internal/card_linked \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'x-client-key: <x-client-key>' \
  --data '
{
  "addressId": "<string>"
}
'
{
  "success": true
}
Remove a wallet from card payment sources. The wallet remains available but won’t be used for card transactions.

Authentication

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

Request Body

addressId
string
required
Wallet addressId to unlink

Response

success
boolean
Whether unlinking was successful
{
  "success": true
}
curl -X DELETE "https://dev.api.baanx.com/v1/wallet/internal/card_linked" \
  -H "x-client-key: YOUR_CLIENT_KEY" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "addressId": "7c1839ee-918e-4787-b74f-deeb48ead58b"
  }'

Important Notes

Unlinking Effects: Unlinking a wallet doesn’t delete it, only removes it as a card payment source. The wallet and its funds remain accessible.