Files
cfw-autumn/apps/docs/mintlify/api-reference/entities/deleteEntity.mdx
2026-05-19 11:51:13 +01:00

33 lines
681 B
Plaintext

---
title: "Delete Entity"
openapi: "openapi POST /v1/entities.delete"
---
import { DynamicParamField } from "/snippets/dynamic-param-field.jsx";
import { DynamicResponseField } from "/snippets/dynamic-response-field.jsx";
import { DynamicResponseExample } from "/snippets/dynamic-response-example.jsx";
### Body Parameters
<DynamicParamField body="customer_id" type="string">
The ID of the customer.
</DynamicParamField>
<DynamicParamField body="entity_id" type="string" required>
The ID of the entity.
</DynamicParamField>
### Response
<DynamicResponseField name="success" type="boolean" />
<ResponseExample>
```json 200
{
"success": true
}
```
</ResponseExample>