This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Deletes a brand.
Note: Deleting a brand will also remove it from all products it is assigned to.
function deleteBrand(brandId: string): Promise<void>;
Brand ID.
import { brandsV3 } from "@wix/stores";
async function deleteBrand(brandId) {
const response = await brandsV3.deleteBrand(brandId);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.