> Portal Navigation:
>
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt
# CreateModifier
# Package: items
# Namespace: ModifiersService
# Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/items/item-modifiers/create-modifier.md
## Permission Scopes:
Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES
## Introduction
> **Note:** The Item Modifiers API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new).
Creates an item modifier.
To create multiple item modifiers at once, use [Bulk Create Modifiers](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/item-modifiers/bulk-create-modifiers.md).
---
## REST API
### Schema
```
Method: createModifier
Description: > **Note:** The Item Modifiers API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new). Creates an item modifier. To create multiple item modifiers at once, use [Bulk Create Modifiers](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/item-modifiers/bulk-create-modifiers.md).
URL: https://www.wixapis.com/v1/modifiers
Method: POST
# Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
Required parameters: modifier, modifier.name
Method parameters:
param name: modifier | type: Modifier | description: An item modifier is a type of menu item that serves as an addition to a menu item. Read more about [item modifiers](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/item-modifiers/introduction.md). | required: true
- name: name | type: string | description: Item modifier display name. | required: true
- name: extendedFields | type: ExtendedFields | description: Extended fields.
- name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md).
- name: inStock | type: boolean | description: Whether the modifier is in stock. Default: `true`.
Return type: CreateModifierResponse
- name: modifier | type: Modifier | description: Created item modifier.
- name: id | type: string | description: Item modifier GUID.
- name: revision | type: string | description: Revision number, which increments by 1 each time the item modifier is updated. To prevent conflicting changes, the current revision must be passed when updating the item modifier.
Ignored when creating an item modifier.
- name: createdDate | type: string | description: Date and time the item modifier was created.
- name: updatedDate | type: string | description: Date and time the item modifier was updated.
- name: name | type: string | description: Item modifier display name.
- name: extendedFields | type: ExtendedFields | description: Extended fields.
- name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md).
- name: inStock | type: boolean | description: Whether the modifier is in stock. Default: `true`.
- name: businessLocationIds | type: array | description: IDs of the business locations ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations.md) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations.md)) where these item modifiers are available.
```
### Examples
### Create an item modifier
```curl
curl -X POST https://www.wixapis.com/restaurants/item-modifiers/v1/modifiers \
-H 'Authorization: ' \
--data-binary '{
"modifier": {
"name": "Tofu",
"type": "MODIFIER"
}
}'
```
---
## JavaScript SDK
### Schema
```
Method: wixClientAdmin.items.ModifiersService.createModifier(modifier)
Description: > **Note:** The Item Modifiers API only works with the Wix Restaurants Menus app. Make sure you have installed this app from the [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new). Creates an item modifier. To create multiple item modifiers at once, use [Bulk Create Modifiers](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/item-modifiers/bulk-create-modifiers.md).
# Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
Required parameters: modifier, modifier.name
Method parameters:
param name: modifier | type: Modifier | description: An item modifier is a type of menu item that serves as an addition to a menu item. Read more about [item modifiers](https://dev.wix.com/docs/rest/business-solutions/restaurants/menus/item-modifiers/introduction.md). | required: true
- name: name | type: string | description: Item modifier display name. | required: true
- name: extendedFields | type: ExtendedFields | description: Extended fields.
- name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md).
- name: inStock | type: boolean | description: Whether the modifier is in stock. Default: `true`.
Return type: PROMISE
- name: _id | type: string | description: Item modifier GUID.
- name: revision | type: string | description: Revision number, which increments by 1 each time the item modifier is updated. To prevent conflicting changes, the current revision must be passed when updating the item modifier.
Ignored when creating an item modifier.
- name: _createdDate | type: Date | description: Date and time the item modifier was created.
- name: _updatedDate | type: Date | description: Date and time the item modifier was updated.
- name: name | type: string | description: Item modifier display name.
- name: extendedFields | type: ExtendedFields | description: Extended fields.
- name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md).
- name: inStock | type: boolean | description: Whether the modifier is in stock. Default: `true`.
- name: businessLocationIds | type: array | description: IDs of the business locations ([SDK](https://dev.wix.com/docs/sdk/backend-modules/restaurants/wix-restaurants-new/about-business-locations.md) | [REST](https://dev.wix.com/docs/rest/business-solutions/restaurants/wix-restaurants-new/about-business-locations.md)) where these item modifiers are available.
```
### Examples
### Create an item modifier
```javascript
import { itemModifiers } from "@wix/restaurants";
const modifier = {
name: "Tofu",
type: "MODIFIER"
};
async function createModifier() {
const response = await itemModifiers.createModifier(modifier);
}
/* Promise resolves to:
* {
* "_id": "9f304b2c-2221-4e51-8dcf-a2dc4de242a8",
* "revision": "1",
* "name": "Tofu",
* "inStock": true
* }
*/
```
### createModifier (self-hosted)
Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md).
```javascript
import { createClient } from '@wix/sdk';
import { itemModifiers } from '@wix/restaurants';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed
const myWixClient = createClient ({
modules: { itemModifiers },
// Include the auth strategy and host as relevant
});
async function createModifier(modifier) {
const response = await myWixClient.itemModifiers.createModifier(modifier);
};
```
---