putProductsSupplierProductData

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

  • products Array<Object>
  • productId Integer
  • productDeliverers Array<Object>
Examples

This function updates the product deliverers for a specific product with the given deliverer ID and product sizes.

Loading editor...

const result = await idosellRequest.putProductsSupplierProductData
	.productId(33)
	.productDeliverers([{
		"delivererId":1,
		"productSizes":[{"sizeId":"uniw",
		"quantity":100}]
	}])
	.exec();