Identity

Delete Blockchain Wallet

Delete a wallet from your application.


Delete blockchain wallet using wallet ID

Make a DELETE request to /wallets/{wallet_id} where {wallet_id} is replaced with the wallet's id to delete a wallet.

WARNING: Wallets are permanently deleted.


const wallet_id = '3fa85f64-5717-4562-b3fc-2c963f66afa6' const response = await fetch('https://api.utiliti.ai/wallets/' + wallet_id, { method: 'DELETE', headers: { 'Content-Type': 'application/json', 'X-API-key': '<YOUR_API_KEY_HERE', }, })

A successful deletion of the wallet will create a status code 200