Skip to main content
DELETE
https://api.karmapay.xyz/v0
/
v0
/
liquidation-addresses
/
:liquidationAddressId
const response = await fetch('https://api.karmapay.xyz/v0/liquidation-addresses/liq_123', {
  method: 'DELETE',
  headers: {
    'Authorization': `Bearer ${API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    externalUserId: "user_123"
  }),
});
{
  "data": {
    "success": true
  }
}
Authentication: Business API Key
Deleting a liquidation address will prevent any future crypto deposits to this address from being processed.

Path Parameters

liquidationAddressId
string
required
Liquidation address ID

Request Body

externalUserId
string
required
Your internal user ID
const response = await fetch('https://api.karmapay.xyz/v0/liquidation-addresses/liq_123', {
  method: 'DELETE',
  headers: {
    'Authorization': `Bearer ${API_KEY}`,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    externalUserId: "user_123"
  }),
});
{
  "data": {
    "success": true
  }
}