This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Deletes a product's brand.
This function requires elevated permissions and runs only on the backend and on dashboard pages.
function removeBrand(_id: string): Promise<void>;
Product ID.
import { products } from "wix-stores.v2";
async function removeBrand(id) {
try {
const result = await products.removeBrand(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.