> 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 # DeleteAddOnGroup # Package: services # Namespace: AddOnGroupsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/delete-add-on-group.md ## Permission Scopes: Manage Bookings: SCOPE.DC-BOOKINGS.MANAGE-BOOKINGS ## Introduction Deletes an add-on group. Deleting the group doesn't delete individual add-ons. Any add-on not associated with another group isn't available for customers to book. --- ## REST API ### Schema ``` Method: deleteAddOnGroup Description: Deletes an add-on group. Deleting the group doesn't delete individual add-ons. Any add-on not associated with another group isn't available for customers to book. URL: https://www.wixapis.com/_api/bookings/v2/services/add-on-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: addOnGroupId, serviceId Method parameters: param name: addOnGroupId | type: addOnGroupId | description: GUID of the add-on group to delete. | required: true param name: serviceId | type: serviceId | description: GUID of the service from which to delete the add-on group. | required: true Return type: DeleteAddOnGroupResponse EMPTY-OBJECT {} Possible Errors: HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: GROUP_NOT_ON_SERVICE | Description: none ``` ### Examples ### Delete an add-on group ```curl curl -X POST 'https://www.wixapis.com/bookings/v2/services/add-on-groups/delete' \ -H 'Authorization: ' \ -d '{ "addOnGroupId": "f8e7d6c5-b4a3-9281-7605-948372615038", "serviceId": "d779a301-398d-4552-aa8c-3bef0b65cedb" }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.services.AddOnGroupsService.deleteAddOnGroup(addOnGroupId, options) Description: Deletes an add-on group. Deleting the group doesn't delete individual add-ons. Any add-on not associated with another group isn't available for customers to book. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: addOnGroupId, options.serviceId, options Method parameters: param name: addOnGroupId | type: string | description: GUID of the add-on group to delete. | required: true param name: options | type: DeleteAddOnGroupOptions none | required: true - name: serviceId | type: string | description: GUID of the service from which to delete the add-on group. | required: true Return type: PROMISE EMPTY-OBJECT {} Possible Errors: HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: GROUP_NOT_ON_SERVICE | Description: none ``` ### Examples ### deleteAddOnGroup ```javascript import { services } from '@wix/bookings'; async function deleteAddOnGroup(addOnGroupId,options) { const response = await services.deleteAddOnGroup(addOnGroupId,options); }; ``` ### deleteAddOnGroup (with elevated permissions) ```javascript import { services } from '@wix/bookings'; import { auth } from '@wix/essentials'; async function myDeleteAddOnGroupMethod(addOnGroupId,options) { const elevatedDeleteAddOnGroup = auth.elevate(services.deleteAddOnGroup); const response = await elevatedDeleteAddOnGroup(addOnGroupId,options); } ``` ### deleteAddOnGroup (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 { services } from '@wix/bookings'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { services }, // Include the auth strategy and host as relevant }); async function deleteAddOnGroup(addOnGroupId,options) { const response = await myWixClient.services.deleteAddOnGroup(addOnGroupId,options); }; ``` ---