> 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 # DeleteSection # Package: menus # Namespace: RestaurantsMenusSection # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/sections/delete-section.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction > **Note:** The Section 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). Deletes a section. --- ## REST API ### Schema ``` Method: deleteSection Description: > **Note:** The Section 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). Deletes a section. URL: https://www.wixapis.com/restaurants/menus/v1/sections/{sectionId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: sectionId Method parameters: param name: sectionId | type: none | required: true Return type: DeleteSectionResponse EMPTY-OBJECT {} ``` ### Examples ### Delete a section ```curl curl -X DELETE https://www.wixapis.com/restaurants/menus-section/v1/sections/be9330c1-c3c0-4f76-96cc-b69eac8d88da \ -H 'Authorization: ' \ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.menus.RestaurantsMenusSection.deleteSection(sectionId) Description: > **Note:** The Section 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). Deletes a section. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: sectionId Method parameters: param name: sectionId | type: string | description: Section GUID. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteSection ```javascript // @title Delete a Section import { sections } from "@wix/restaurants"; async function deleteSection() { await sections.deleteSection("be9330c1-c3c0-4f76-96cc-b69eac8d88da"); } ``` ### deleteSection (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 { sections } from '@wix/restaurants'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { sections }, // Include the auth strategy and host as relevant }); async function deleteSection(sectionId) { const response = await myWixClient.sections.deleteSection(sectionId); }; ``` ---