Resets the data (such as the price and the weight) of all variants for a given product to their default values.
This function requires elevated permissions and runs only on the backend and on dashboard pages.
function resetAllProductVariantData(_id: string): Promise<void>;
Product ID.
import { products } from "wix-stores.v2";
async function resetAllProductVariantData(id) {
try {
const result = await products.resetAllProductVariantData(id);
return result;
} catch (error) {
console.error(error);
// Handle the error
}
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.