Auto Settlements
Delete
API Documentation
Wallet Management
Address Operations
- GETGet Addresses
- POSTGenerate Address
- GETGet Address
- PATCHUpdate Address
- POSTWhitelist address
- DELUnwhitelist address
- GETGet Balance
- GETGet Balances
- GETGet transactions
- POSTWithdraw Network Fee
- POSTWithdraw
- POSTGet Swap Quote
- POSTSwap Execute
- POSTCustom Smart Contract Network Fee
- POSTCustom Smart Contract Read
- POSTCustom Smart Contract Write
Withdrawals
Custom Smart Contracts
Asset Management
Transactions
AML(Anti Money Laundering)
Auto Settlements
Asset Recovery
Payment Links
Miscellaneous
Auto Settlements
Delete
This API endpoint is used to delete a beneficiary from a specific wallet.
DELETE
/
v1
/
wallets
/
{walletId}
/
beneficiaries
/
{id}
curl --request DELETE \
--url https://api.blockradar.co/v1/wallets/{walletId}/beneficiaries/{id} \
--header 'x-api-key: <api-key>'
{
"data": {
"address": "TRnm5TmNN8M9uvVuqs3Xx9F1A3a87gZAaP",
"createdAt": "2024-09-01T17:53:09.112Z",
"deletedAt": "2024-09-01T15:01:45.032Z",
"id": "c40b6c09-f5b7-46dd-984d-0ac57ec94d6b",
"isActive": true,
"isDefault": false,
"isSettlement": true,
"name": "Ledger Wallet",
"settlementFrequency": "WEEKLY",
"updatedAt": "2024-09-01T18:01:45.033Z"
},
"message": "Beneficiary deleted successfully",
"statusCode": 200
}
Authorizations
Path Parameters
Example:
"YOUR_WALLET_ID"
Example:
"BENEFICIARY_ID"
Response
200 - application/json
200
The response is of type object
.
curl --request DELETE \
--url https://api.blockradar.co/v1/wallets/{walletId}/beneficiaries/{id} \
--header 'x-api-key: <api-key>'
{
"data": {
"address": "TRnm5TmNN8M9uvVuqs3Xx9F1A3a87gZAaP",
"createdAt": "2024-09-01T17:53:09.112Z",
"deletedAt": "2024-09-01T15:01:45.032Z",
"id": "c40b6c09-f5b7-46dd-984d-0ac57ec94d6b",
"isActive": true,
"isDefault": false,
"isSettlement": true,
"name": "Ledger Wallet",
"settlementFrequency": "WEEKLY",
"updatedAt": "2024-09-01T18:01:45.033Z"
},
"message": "Beneficiary deleted successfully",
"statusCode": 200
}