Identity

Update Blockchain Wallet

Update a wallet's metadata.


Update wallet metadata

Make a PUT request to /wallets/{wallet_id} where {wallet_id} is replaced with the wallet's id to update a wallet metadata with a new name or address.


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