> 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 # DeleteOperationGroup # Package: onlineOrders # Namespace: OperationGroupService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/restaurants/online-orders/operation-groups/delete-operation-group.md ## Permission Scopes: Manage Restaurants - all permissions: SCOPE.RESTAURANTS.MEGA-SCOPES ## Introduction Deletes a OperationGroup. Deleting a OperationGroup permanently removes them from the OperationGroup List. --- ## REST API ### Schema ``` Method: deleteOperationGroup Description: Deletes a OperationGroup. Deleting a OperationGroup permanently removes them from the OperationGroup List. URL: https://www.wixapis.com/restaurants/v1/operation-groups/{operationGroupId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: operationGroupId Method parameters: param name: operationGroupId | type: none | required: true Return type: DeleteOperationGroupResponse EMPTY-OBJECT {} ``` ### Examples ### Delete an availability exception ```curl curl -X DELETE https://www.wixapis.com/restaurants/v1/operation-groups/43efeb0d-9484-498e-a37d-b9b38bbd65c5 \ -H 'Authorization: ' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.onlineOrders.OperationGroupService.deleteOperationGroup(operationGroupId) Description: Deletes a OperationGroup. Deleting a OperationGroup permanently removes them from the OperationGroup List. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: operationGroupId Method parameters: param name: operationGroupId | type: string | description: Id of the OperationGroup to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteOperationGroup ```javascript import { operationGroups } from '@wix/restaurants'; async function deleteOperationGroup(operationGroupId) { const response = await operationGroups.deleteOperationGroup(operationGroupId); }; ``` ### deleteOperationGroup (with elevated permissions) ```javascript import { operationGroups } from '@wix/restaurants'; import { auth } from '@wix/essentials'; async function myDeleteOperationGroupMethod(operationGroupId) { const elevatedDeleteOperationGroup = auth.elevate(operationGroups.deleteOperationGroup); const response = await elevatedDeleteOperationGroup(operationGroupId); } ``` ### deleteOperationGroup (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 deleteOperationGroup(operationGroupId) { const response = await myWixClient.operationGroups.deleteOperationGroup(operationGroupId); }; ``` ---