POST

Remove Products From Collection


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Deletes products from 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/delete

Path Params
idstringRequired

Collection ID.

Body Params
productIdsArray <string>RequiredmaxItems 1000

IDs of the products to remove from the collection.

Response Object
Returns an empty object.
Remove Products From Collection Example 1
Request
cURL
curl -X POST \ 'https://www.wixapis.com/stores/v1/collections/1044e7e4-37d1-0705-c5b3-623baae212fd/productIds/delete' \ --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?