Delete RLCL
Overview
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)
{
"success": true
}
Error Response (400 Bad Request)
{
"error": "bad_request",
"error_description": "RLCL (PremiumUserRLCL) is not found!"
}
cURL Example
curl -X DELETE \
"https://demo.apinizer.com/apiops/projects/MyProject/rlcl/PremiumUserRLCL/" \
-H "Authorization: Bearer YOUR_TOKEN"
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 - Create a new RLCL
- Update RLCL - Update an RLCL