> 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 # ResetAllVariantData # Package: catalogV1 # Namespace: CatalogWriteApi # Method link: https://dev.wix.com/docs/api-reference/business-solutions/stores/catalog-v1/catalog/reset-all-product-variant-data.md ## Permission Scopes: Manage Products: SCOPE.DC-STORES.MANAGE-PRODUCTS ## Introduction Resets the data (such as the price and the weight) of all variants for a given product to their default values. --- ## REST API ### Schema ``` Method: resetAllVariantData Description: Resets the data (such as the price and the weight) of all variants for a given product to their default values. URL: https://www.wixapis.com/stores/v1/products/{id}/variants/resetToDefault Method: POST Return type: ResetAllVariantDataResponse EMPTY-OBJECT {} ``` ### Examples ### ResetAllVariantData ```curl ~~~cURL curl -X POST \ 'https://www.wixapis.com/stores/v1/products/1044e7e4-37d1-0705-c5b3-623baae212fd/variants/resetToDefault' \ --data-binary '{}' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.catalogV1.CatalogWriteApi.resetAllVariantData(_id) Description: Resets the data (such as the price and the weight) of all variants for a given product to their default values. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: _id Method parameters: param name: _id | type: string | description: Product GUID. | required: true Return type: PROMISE EMPTY-OBJECT {} ``` ### Examples ### resetAllProductVariantData ```javascript import { products } from '@wix/stores'; async function resetAllProductVariantData(_id) { const response = await products.resetAllProductVariantData(_id); }; ``` ### resetAllProductVariantData (with elevated permissions) ```javascript import { products } from '@wix/stores'; import { auth } from '@wix/essentials'; async function myResetAllProductVariantDataMethod(_id) { const elevatedResetAllProductVariantData = auth.elevate(products.resetAllProductVariantData); const response = await elevatedResetAllProductVariantData(_id); } ``` ### resetAllProductVariantData (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 { products } from '@wix/stores'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { products }, // Include the auth strategy and host as relevant }); async function resetAllProductVariantData(_id) { const response = await myWixClient.products.resetAllProductVariantData(_id); }; ``` ---