putProductsCollectionsProducts

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

  • params Array<Object>
  • products Array<Object>
  • collectionId Integer
Examples

This function adds a product with ID 49 and quantity 2 to the collection with ID 69.

Loading editor...

const result = await idosellRequest.putProductsCollectionsProducts
	.collectionId(69)
	.products([{
		"productId":49,
		"quantity":2
	}])
	.exec();