**Version: 202601**

# Delete menu

**DELETE** `/openapi/2026-01/menus/:id`

Delete a custom menu. Built-in menus cannot be deleted.

## Request

**Path Parameters**

- `id` string (required)

  Menu id to delete (custom category only)

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `state` int32

    Result state:

    *   `0`: Success
  - `msg` string

    Result message

```json
{
  "code": "string",
  "message": "string",
  "data": {
    "state": 0,
    "msg": "string"
  }
}
```
