This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.
Adds info sections to multiple products.
function bulkAddInfoSectionsToProducts(
products: Array<V3ProductIdWithRevision>,
options: BulkAddInfoSectionsToProductsOptions,
): Promise<V3BulkAddInfoSectionsToProductsResponse>;
List of product IDs and revisions.
import { productsV3 } from "@wix/stores";
async function bulkAddInfoSectionsToProducts(products, options) {
const response = await productsV3.bulkAddInfoSectionsToProducts(
products,
options,
);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.