> 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 # BulkDeleteOperationGroups # Package: onlineOrders # Namespace: OperationGroupService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/online-orders/operation-groups/bulk-delete-operation-groups.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction Delete multiple OperationGroups in a single request. Works synchronously. --- ## REST API ### Schema ``` Method: bulkDeleteOperationGroups Description: Delete multiple OperationGroups in a single request. Works synchronously. URL: https://www.wixapis.com/restaurants/v1/bulk/operation-groups/delete Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: operationGroupIds Method parameters: param name: operationGroupIds | type: array | description: OperationGroup ids to be deleted | required: true Return type: BulkDeleteOperationGroupsResponse - name: results | type: array | description: Results - name: itemMetadata | type: ItemMetadata | description: Metadata regarding the specific single delete operation - 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 regarding the bulk delete operation - 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 ### Bulk delete operation groups ```curl curl -X POST \ 'https://www.wixapis.com/restaurants/v1/bulk/operation-groups/delete' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ --data-raw '{ "operation_group_ids": [ "4820c639-4a9b-4583-8617-897e1102f369", "68dc7603-3bc3-4641-b744-be84904190f9" ] }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.onlineOrders.OperationGroupService.bulkDeleteOperationGroups(operationGroupIds) Description: Delete multiple OperationGroups in a single request. Works synchronously. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: operationGroupIds Method parameters: param name: operationGroupIds | type: array | description: OperationGroup ids to be deleted | required: true Return type: PROMISE - name: results | type: array | description: Results - name: itemMetadata | type: ItemMetadata | description: Metadata regarding the specific single delete operation - 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 regarding the bulk delete operation - 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 ### bulkDeleteOperationGroups ```javascript import { operationGroups } from '@wix/restaurants'; async function bulkDeleteOperationGroups(operationGroupIds) { const response = await operationGroups.bulkDeleteOperationGroups(operationGroupIds); }; ``` ### bulkDeleteOperationGroups (with elevated permissions) ```javascript import { operationGroups } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myBulkDeleteOperationGroupsMethod(operationGroupIds) { const elevatedBulkDeleteOperationGroups = auth.elevate(operationGroups.bulkDeleteOperationGroups); const response = await elevatedBulkDeleteOperationGroups(operationGroupIds); } ``` ### bulkDeleteOperationGroups (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 { operationGroups } from '@wix/restaurants'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { operationGroups }, // Include the auth strategy and host as relevant }); async function bulkDeleteOperationGroups(operationGroupIds) { const response = await myWixClient.operationGroups.bulkDeleteOperationGroups(operationGroupIds); }; ``` ---