Operation Id: 
products/collections/products/delete/post [Official Documentaction]
Methods
- params Array<Object>
- products Array<Object>
- collectionId Integer
Examples
This function deletes a specific product with the productId 33 from the product collection with the collectionId 69.
Loading editor...
const result = await idosellRequest.deleteProductsCollectionsProducts
	.collectionId(69)
	.products([{
		"productId":33
	}])
	.exec();