# Delete Custom Entity

Deletes an item of a Custom Entity type, identified by its denominator and item identifier.
Returns `204 No Content` when the item has been deleted.
## Authentication
Requires a valid API key in the `X-API-KEY` header.
## Response
**204 No Content** — Custom Entity item deleted.
## Error Responses
- **401 Unauthorized** — Missing or invalid API key. Returned by the API gateway as
`{ "message": "Unauthorized", "request_id": "d8aafa5b8f3e400b60bea0123dd33317" }`.
- **403 Forbidden** — The API key does not have write permissions for this operation.
- **404 Not Found** — Custom Entity denominator or item with the given identifier does not exist.
- **500 Internal Server Error** — Unexpected technical error.

## Example
**Request:**

```http
DELETE /CustomEntities('Brand')/item(42) HTTP/1.1
X-API-KEY: your-api-key-here
```
**Response:**

```http
HTTP/1.1 204 No Content
```

Endpoint: DELETE /CustomEntities('{customEntityDenominator}')/item({itemId})
Version: 2.0.0

## Path parameters:

  - `customEntityDenominator` (string, required)
    Custom Entity denominator (natural language name from the PIM)

  - `itemId` (integer, required)
    Custom Entity item identifier

## Header parameters:

  - `X-API-KEY` (string)
    Tenant's API key (required)

  - `Accept-Language` (string)
    Accept-Language header (not used for delete, accepted for consistency)

## Response 401 fields (application/json):

  - `message` (string)

  - `request_id` (string)

## Response 403 fields (application/json):

  - `message` (string)

  - `request_id` (string)

## Response 404 fields (application/json):

  - `type` (string)

  - `title` (string)

  - `status` (integer)

  - `detail` (string)

  - `instance` (string)

## Response 500 fields (application/json):

  - `error` (string)

  - `details` (any)

