---
title: "Create Menu Item"
method: POST
path: "/api/v1/menus/properties/{property_id}/menu-items"
tags: ["Menus"]
---

# Create Menu Item

`POST /api/v1/menus/properties/{property_id}/menu-items`

## Path parameters

- `property_id` string, uuid, required

## Request body

- MenuItemWrite
  - `name` string, required
  - `category` 'FOOD' | 'COCKTAIL' | 'NON_ALCOHOLIC_COCKTAIL' | 'SIGNATURE' | 'LONG_DRINK' | 'WINE' | 'BEER' | 'SPIRIT' | 'COFFEE_TEA' | 'SMOOTHIE_SHAKE' | 'REFRESHMENT'
  - `subcategory` string, nullable
  - `ingredients_text` string, nullable
  - `allergen_codes` string[]
  - `tags` string[]
  - `description` string, nullable
  - `image_url` string, nullable
  - `price` union
    - number
    - string
  - `currency` string, nullable

## Response `201`

Successful Response

- MenuItemRead
  - `id` string, uuid, required
  - `property_id` string, uuid, required
  - `name` string, required
  - `category` 'FOOD' | 'COCKTAIL' | 'NON_ALCOHOLIC_COCKTAIL' | 'SIGNATURE' | 'LONG_DRINK' | 'WINE' | 'BEER' | 'SPIRIT' | 'COFFEE_TEA' | 'SMOOTHIE_SHAKE' | 'REFRESHMENT', required
  - `subcategory` string, nullable, required
  - `ingredients_text` string, nullable, required
  - `allergen_codes` string[], required
  - `tags` string[], required
  - `description` string, nullable, required
  - `image_url` string, nullable, required
  - `price` string, nullable, required
  - `currency` string, nullable, required

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-03** `d65b8fefae34` — 1 breaking, 3 info
  - added the pattern `^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$` to the request property `price/anyOf[subschema #2]/`
  - added the optional property `detail/items/ctx` to the response with the `422` status
  - added the optional property `detail/items/input` to the response with the `422` status
  - the `price/anyOf[subschema #1]/` response's property pattern `^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$` was added for the status `201`

[Change history](https://skmtc.dev/getanana/apis/cleon-api/changes/api/v1/menus/properties/:property_id/menu-items/post.md)

---

[API](https://skmtc.dev/getanana/apis/cleon-api.md) · [All operations](https://skmtc.dev/getanana/apis/cleon-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/getanana/cleon-api/revisions/38166468bfc5/schema)
