addProductsToCollection( )


Adds products to a specified collection.

Authentication

You can only call this method when authenticated as a Wix app or Wix user identity.

Permissions
Manage Stores - all permissions
Manage Products
Learn more about app permissions.
Method Declaration
Copy
function addProductsToCollection(
  _id: string,
  productIds: Array<string>,
): Promise<void>;
Method Parameters
_idstringRequired

Collection ID.


productIdsArray<string>Required

IDs of the products to add to the collection, separated by commas.

JavaScript
import { products } from "@wix/stores"; async function addProductsToCollection(id, productIds) { const response = await products.addProductsToCollection(id, productIds); }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?