---
title: "Creates a new restaurant menu"
method: POST
path: "/restaurant_menus"
tags: ["RestaurantMenu"]
---

# Creates a new restaurant menu

`POST /restaurant_menus`

Creates a new restaurant menu

## Request body

- AddRestaurantMenu
  - `restaurant_id` integer — Restaurant id.
  - `cuisine_id` integer — Cuisine id.
  - `restaurant_category_id` integer — Restaurant category id.
  - `menu_type_id` integer — Menu type id.
  - `name` string — Name.
  - `description` string — Description.
  - `is_addon` integer — Is addon.
  - `is_popular` integer — Is popular.
  - `is_spicy` integer — Is spicy.
  - `is_active` integer — Is active.
  - `restaurant_menu_price` RestaurantMenuPrice
    - `restaurant_menu_id` integer
    - `price_type_id` integer — Price type ID
    - `price_type_name` string — Price type name
    - `price` number, float
  - `image` AddImage
    - `attachment` string — attachment
    - `image_data` string — image_data
  - `color` string — Color.
  - `stock` string — Stock.

## Response `200`

New restaurant menu added

- AddRestaurantMenu
  - `restaurant_id` integer — Restaurant id.
  - `cuisine_id` integer — Cuisine id.
  - `restaurant_category_id` integer — Restaurant category id.
  - `menu_type_id` integer — Menu type id.
  - `name` string — Name.
  - `description` string — Description.
  - `is_addon` integer — Is addon.
  - `is_popular` integer — Is popular.
  - `is_spicy` integer — Is spicy.
  - `is_active` integer — Is active.
  - `restaurant_menu_price` RestaurantMenuPrice
    - `restaurant_menu_id` integer
    - `price_type_id` integer — Price type ID
    - `price_type_name` string — Price type name
    - `price` number, float
  - `image` AddImage
    - `attachment` string — attachment
    - `image_data` string — image_data
  - `color` string — Color.
  - `stock` string — Stock.

## Other responses

- `default` — Unexpected error

---

[API](https://skmtc.net/agriya/apis/ofos-api-endpoints.md) · [All operations](https://skmtc.net/agriya/apis/ofos-api-endpoints/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/agriya/ofos-api-endpoints/revisions/8db13a44d758/schema)
