# Delete Category

Deletes the Category identified by its route identifier.
## Authentication
Requires a valid API key in the `X-API-KEY` header.
## Response
**204 No Content** — Category 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** — Category with the given identifier does not exist.
- **500 Internal Server Error** — Unexpected technical error.

## Example
**Request:**

```http
DELETE /Categories(123) HTTP/1.1
X-API-KEY: your-api-key-here
```
**Response:**

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

Endpoint: DELETE /Categories({categoryId})
Version: 2.0.0

## Path parameters:

  - `categoryId` (integer, required)
    Category resource identifier

## Header parameters:

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

## 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)

