Files
cfw-autumn/apps/docs/mintlify/api-reference/features/deleteFeature.mdx
2026-02-19 14:14:12 +00:00

29 lines
599 B
Plaintext

---
title: "Delete Feature"
openapi: "openapi POST /v1/features.delete"
---
import { DynamicParamField } from "/components/dynamic-param-field.jsx";
import { DynamicResponseField } from "/components/dynamic-response-field.jsx";
import { DynamicResponseExample } from "/components/dynamic-response-example.jsx";
### Body Parameters
<DynamicParamField body="feature_id" type="string" required>
The ID of the feature to delete.
</DynamicParamField>
### Response
<DynamicResponseField name="success" type="boolean" />
<ResponseExample>
```json 200
{
"success": true
}
```
</ResponseExample>