> 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 # DeleteServiceOptionsAndVariants # Package: services # Namespace: ServiceOptionsAndVariantsService # Method link: https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/service-options-and-variants/delete-service-options-and-variants.md ## Permission Scopes: Manage Bookings Services and Settings: SCOPE.BOOKINGS.CONFIGURATION ## Introduction Deletes a `serviceOptionsAndVariants` object. Because each service can be connected to only a single `serviceOptionsAndVariants` object, the service doesn't support [varied pricing](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments.md) after deleting a `serviceOptionsAndVariants` object. Instead, Wix Bookings uses its standard price calculation. --- ## REST API ### Schema ``` Method: deleteServiceOptionsAndVariants Description: Deletes a `serviceOptionsAndVariants` object. Because each service can be connected to only a single `serviceOptionsAndVariants` object, the service doesn't support [varied pricing](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments.md) after deleting a `serviceOptionsAndVariants` object. Instead, Wix Bookings uses its standard price calculation. URL: https://www.wixapis.com/bookings/v1/serviceOptionsAndVariants/{serviceOptionsAndVariantsId} Method: DELETE # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: serviceOptionsAndVariantsId Method parameters: query param name: revision | type: revision | description: Revision of the `serviceOptionsAndVariants` object to delete. param name: serviceOptionsAndVariantsId | type: none | required: true Return type: DeleteServiceOptionsAndVariantsResponse EMPTY-OBJECT {} ``` ### Examples ### Delete a set of options and variants ```curl curl -X DELETE \ 'https://wixapis.com/bookings/v1/serviceOptionsAndVariants/cee77f8c-2ad3-11ed-a261-0242ac120002' \ -H 'Authorization: ' \ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.services.ServiceOptionsAndVariantsService.deleteServiceOptionsAndVariants(serviceOptionsAndVariantsId, options) Description: Deletes a `serviceOptionsAndVariants` object. Because each service can be connected to only a single `serviceOptionsAndVariants` object, the service doesn't support [varied pricing](https://dev.wix.com/docs/api-reference/business-solutions/bookings/services/services-v2/about-service-payments.md) after deleting a `serviceOptionsAndVariants` object. Instead, Wix Bookings uses its standard price calculation. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: serviceOptionsAndVariantsId Method parameters: param name: options | type: DeleteServiceOptionsAndVariantsOptions none - name: revision | type: string | description: Revision of the `serviceOptionsAndVariants` object to delete. param name: serviceOptionsAndVariantsId | type: string | description: GUID of the `serviceOptionsAndVariants` object to delete. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### deleteServiceOptionsAndVariants ```javascript import { serviceOptionsAndVariants } from '@wix/bookings'; async function deleteServiceOptionsAndVariants(serviceOptionsAndVariantsId,options) { const response = await serviceOptionsAndVariants.deleteServiceOptionsAndVariants(serviceOptionsAndVariantsId,options); }; ``` ### deleteServiceOptionsAndVariants (with elevated permissions) ```javascript import { serviceOptionsAndVariants } from '@wix/bookings'; import { auth } from '@wix/essentials'; async function myDeleteServiceOptionsAndVariantsMethod(serviceOptionsAndVariantsId,options) { const elevatedDeleteServiceOptionsAndVariants = auth.elevate(serviceOptionsAndVariants.deleteServiceOptionsAndVariants); const response = await elevatedDeleteServiceOptionsAndVariants(serviceOptionsAndVariantsId,options); } ``` ### deleteServiceOptionsAndVariants (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 { serviceOptionsAndVariants } from '@wix/bookings'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { serviceOptionsAndVariants }, // Include the auth strategy and host as relevant }); async function deleteServiceOptionsAndVariants(serviceOptionsAndVariantsId,options) { const response = await myWixClient.serviceOptionsAndVariants.deleteServiceOptionsAndVariants(serviceOptionsAndVariantsId,options); }; ``` ---