This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Updates a specified property for up to 100 products at a time.
This function requires elevated permissions and runs only on the backend and on dashboard pages.
function bulkUpdateProductsProperty(
ids: Array<string>,
set: SetValue,
): Promise<BulkUpdateProductsResponse>;
Product IDs.
Field to update.
import { products } from "wix-stores.v2";
async function bulkUpdateProductsProperty(ids, set) {
try {
const result = await products.bulkUpdateProductsProperty(ids, set);
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.