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

# Delete RLCL

> Deletes an RLCL specified by name. The RLCL and all its configurations are permanently removed.

## Endpoint

```
DELETE /apiops/projects/{projectName}/rlcl/{rlclName}/
```

## Authentication

Requires a Personal API Access Token.

### Header

```
Authorization: Bearer YOUR_TOKEN
```

## Request

### Headers

| Header        | Value          | Required |
| ------------- | -------------- | -------- |
| Authorization | Bearer {token} | Yes      |

### Path Parameters

| Parameter   | Type   | Required | Description  |
| ----------- | ------ | -------- | ------------ |
| projectName | string | Yes      | Project name |
| rlclName    | string | Yes      | RLCL name    |

### Request Body

None.

## Response

### Success Response (200 OK)

```json theme={null}
{
  "success": true
}
```

### Error Response (400 Bad Request)

```json theme={null}
{
  "error": "bad_request",
  "error_description": "RLCL (PremiumUserRLCL) is not found!"
}
```

## cURL Example

```bash theme={null}
curl -X DELETE \
  "https://demo.apinizer.com/apiops/projects/MyProject/rlcl/PremiumUserRLCL/" \
  -H "Authorization: Bearer YOUR_TOKEN"
```

## Permissions

* User must have **`IDENTITY` + `MANAGE`** permission in the project

## Notes and Warnings

* **Permanent Deletion**:
  * RLCL is permanently deleted
  * This action cannot be undone
* **Configurations**:
  * All credentials, endpoints, and conditions are also removed

## Related Documentation

* [Create RLCL](/api-reference/rlcl/crud/create-rlcl) - Create a new RLCL
* [Update RLCL](/api-reference/rlcl/crud/update-rlcl) - Update an RLCL
