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

# Delete A CMS Entry

> Remove an entry from a CMS database.

Delete entries only from trusted server-side tools.

```text theme={null}
DELETE /api/public/cms/[modelId]/[id]
```

## Example

```bash theme={null}
curl "https://api.plato.ae/api/public/cms/products/entry_123" \
  -X DELETE \
  -H "Authorization: Bearer $PLATO_API_KEY"
```

## Response

```json theme={null}
{
  "id": "entry_123",
  "deleted": true
}
```

## Notes

* Delete is permanent for API callers.
* The entry must belong to the API key workspace.
* If the entry is used by other content, remove or update those references first.
* Use a dedicated API key role for tools that are allowed to delete content.
