> 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 # DeleteModifierGroup # Package: items # Namespace: ModifierGroupsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/items/item-modifier-groups/delete-modifier-group.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction > **Note:** The Item Modifier Groups API only works with the Wix Restaurants Menus app. Make sure you downloaded this app from [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new). Deletes a modifier group. --- ## REST API ### Schema ``` Method: deleteModifierGroup Description: > **Note:** The Item Modifier Groups API only works with the Wix Restaurants Menus app. Make sure you downloaded this app from [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new). Deletes a modifier group. URL: https://www.wixapis.com/restaurants/menus/v1/modifier-groups/{modifierGroupId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: modifierGroupId Method parameters: param name: modifierGroupId | type: none | required: true Return type: DeleteModifierGroupResponse EMPTY-OBJECT {} ``` ### Examples ### DeleteModifierGroup ```curl ~~~cURL Title: Delete a modifier group ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.items.ModifierGroupsService.deleteModifierGroup(modifierGroupId) Description: > **Note:** The Item Modifier Groups API only works with the Wix Restaurants Menus app. Make sure you downloaded this app from [Wix App Market](https://www.wix.com/app-market/wix-restaurants-menus-new). Deletes a modifier group. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: modifierGroupId Method parameters: param name: modifierGroupId | type: string | description: Modifier group GUID. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteModifierGroup ```javascript import { itemModifierGroups } from '@wix/restaurants'; async function deleteModifierGroup(modifierGroupId) { const response = await itemModifierGroups.deleteModifierGroup(modifierGroupId); }; ``` ### deleteModifierGroup (with elevated permissions) ```javascript import { itemModifierGroups } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myDeleteModifierGroupMethod(modifierGroupId) { const elevatedDeleteModifierGroup = auth.elevate(itemModifierGroups.deleteModifierGroup); const response = await elevatedDeleteModifierGroup(modifierGroupId); } ``` ### deleteModifierGroup (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 { itemModifierGroups } from '@wix/restaurants'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { itemModifierGroups }, // Include the auth strategy and host as relevant }); async function deleteModifierGroup(modifierGroupId) { const response = await myWixClient.itemModifierGroups.deleteModifierGroup(modifierGroupId); }; ``` ---