Skip to main content
DELETE
/
limits
/
{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 limit = await client.limits.delete('id');

console.log(limit.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

Unique identifier for the limit

Response

Limit deleted

success
boolean
required

Whether the limit was successfully deleted