> 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 # BulkDeleteSections # Package: menus # Namespace: RestaurantsMenusSection # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/menus/sections/bulk-delete-sections.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 multiple sections at once. --- ## REST API ### Schema ``` Method: bulkDeleteSections 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 multiple sections at once. URL: https://www.wixapis.com/restaurants/menus/v1/bulk/sections/delete Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: ids Method parameters: query param name: ids | type: array | description: Section GUIDs. | required: true Return type: BulkDeleteSectionsResponse - name: results | type: array | description: Information about the deleted sections. - name: itemMetadata | type: ItemMetadata | description: Metadata for deleted sections. - name: id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action was successful for this item. When `false`, the `error` field is populated. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: bulkActionMetadata | type: BulkActionMetadata | description: Metadata for the API call. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### Delete multiple sections ```curl curl -X DELETE 'https://www.wixapis.com/restaurants/menus-section/v1/bulk/sections/delete' \ -H 'Authorization: \ --data-raw '{ "ids": [ "1fc4267d-22db-44dc-a872-6484b737718a", "be9330c1-c3c0-4f76-96cc-b69eac8d88da" ] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.menus.RestaurantsMenusSection.bulkDeleteSections(ids) 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 multiple sections at once. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: ids Method parameters: param name: ids | type: array | description: Section GUIDs. | required: true Return type: PROMISE - name: results | type: array | description: Information about the deleted sections. - name: itemMetadata | type: ItemMetadata | description: Metadata for deleted sections. - name: _id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action was successful for this item. When `false`, the `error` field is populated. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: bulkActionMetadata | type: BulkActionMetadata | description: Metadata for the API call. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### bulkDeleteSections ```javascript import { sections } from '@wix/restaurants'; async function bulkDeleteSections(ids) { const response = await sections.bulkDeleteSections(ids); }; ``` ### bulkDeleteSections (with elevated permissions) ```javascript import { sections } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myBulkDeleteSectionsMethod(ids) { const elevatedBulkDeleteSections = auth.elevate(sections.bulkDeleteSections); const response = await elevatedBulkDeleteSections(ids); } ``` ### bulkDeleteSections (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 bulkDeleteSections(ids) { const response = await myWixClient.sections.bulkDeleteSections(ids); }; ``` ---