Skip to main content
DELETE
/
balances
/
{id}
JavaScript
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);
{
  "success": true
}

Authorizations

Authorization
string
header
required

API Key or Personal Access Token (PAT). When using PAT, include X-Project header.

Path Parameters

id
string
required

Balance ID

Response

Balance deleted

success
boolean
required

Whether deleted successfully