POST

Add Products To Collection


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.
Endpoint
POST
https://www.wixapis.com/stores/v1/collections/{id}/productIds

Path Params
idstringRequired

Collection ID.

Body Params
productIdsArray <string>maxItems 1000

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

Response Object
Returns an empty object.
Add Products To Collection Example 1
Request
cURL
curl -X POST \ 'https://www.wixapis.com/stores/v1/collections/1044e7e4-37d1-0705-c5b3-623baae212fd/productIds' \ --data-binary '{ "productIds": [ "a60fef92-ee29-070f-a7ed-9bbc3cc1c2f4", "d9cd1d2f-8318-486b-a6f3-aa0c4e81ccd2" ] }' \ -H 'Content-Type: application/json' \ -H 'Authorization: <AUTH>'
Response
JSON
{}
Errors

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

Did this help?