putProductsCollectionsRenew

Operation Id:
products/collections/renew/put [Official Documentaction]
Methods

  • params Array<Object>
  • products Array<Object>
  • collectionIdent Object
Examples

This function adds all available sizes of a product with ID 13 to the collection with ID 69.

Loading editor...

const result = await idosellRequest.putProductsCollectionsRenew
	.collectionIdent({
		"collectionIdentType":"id",
		"collectionId":"69"
	})
	.products([{
		"productIdent":{"productId":"13",
		"productIdentType":"id"},"addType":"allSizes","quantity":1
	}])
	.exec();