import Limitry from '@limitry/sdk';const client = new Limitry({ apiKey: process.env['LIMITRY_API_KEY'], // This is the default and can be omitted});const balance = await client.balances.delete('id');console.log(balance.success);
Copy
{ "success": true}
Balances
Delete a balance
Delete a balance. All associated transactions are preserved.
DELETE
/
balances
/
{id}
JavaScript
Copy
import Limitry from '@limitry/sdk';const client = new Limitry({ apiKey: process.env['LIMITRY_API_KEY'], // This is the default and can be omitted});const balance = await client.balances.delete('id');console.log(balance.success);