> ## Documentation Index
> Fetch the complete documentation index at: https://docs.throttlr.yashjejurkar.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Rule

> Delete a rate limit rule permanently.

```http theme={null}
DELETE /rules/rule/{ruleId}
```

**Headers:** `Authorization: Bearer <token>`

**Response (200):**

```json theme={null}
{
  "message": "Rule deleted successfully"
}
```

<Warning>
  Deleting a rule is irreversible. Any SDK calls using this rule name will fail with a `RULE_NOT_FOUND` error after deletion.
</Warning>
