---
title: "Update menu item"
method: PUT
path: "/menu/{locale}/{id}"
tags: ["Menu"]
---

# Update menu item

`PUT /menu/{locale}/{id}`

Updates an existing menu item. Only provided fields are changed (partial update). Supports image replacement via base64.

## Path parameters

- `locale` integer, required
- `id` integer, required

## Request body

- UpdateMenuItemRequest
  - `name` string
  - `category_id` integer
  - `description` string
  - `price` number, float
  - `vat` number, float
  - `weight` integer
  - `volume` integer
  - `alcohol` number
  - `is_vegetarian` 0 | 1
  - `is_low_calorie` 0 | 1
  - `is_gluten_free` 0 | 1
  - `is_spicy` 0 | 1
  - `is_adult` 0 | 1
  - `available_for_order` 0 | 1
  - `is_active` 0 | 1
  - `order_position` integer
  - `image_base64` string — Base64-encoded JPEG image (replaces existing image)
  - `remove_image` boolean — Set to true to remove the current image
  - `translations` Translation[]
    - `lang` string — Language code (e.g. en, pl, de)
    - `name` string
    - `description` string

## Response `200`

Item updated

- object
  - `success` boolean
  - `data` MenuItemDetail
    - `id` integer
    - `category_id` integer
    - `name` string
    - `description` string, nullable
    - `price` number, float
    - `vat` number, float
    - `image` string, nullable
    - `weight` integer, nullable
    - `volume` integer, nullable
    - `alcohol` number, nullable
    - `is_vegetarian` 0 | 1
    - `is_low_calorie` 0 | 1
    - `is_gluten_free` 0 | 1
    - `is_spicy` 0 | 1
    - `is_adult` 0 | 1
    - `available_for_order` 0 | 1
    - `is_active` 0 | 1
    - `order_position` integer
    - `translations` Translation[]
      - `lang` string — Language code (e.g. en, pl, de)
      - `name` string
      - `description` string

## Other responses

- `403` — API key not authorized for this locale or missing required scope
- `404` — Item not found

---

[API](https://skmtc.dev/myrest/apis/myrest-public-api.md) · [All operations](https://skmtc.dev/myrest/apis/myrest-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/myrest/myrest-public-api/revisions/70905e6e4284/schema)
