putProductsOmnibusPrices

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

  • products Array<Object>
  • ident Object
  • sizes Array<Object>
  • omnibusPrices Object
  • shops Array<Object>
  • productId productId: number|string, type: 'id'|'index'|'codeExtern'|'codeProducer'
  • setPrice price: number, wholesale: boolean
  • mode manual: boolean
Examples

This function updates the omnibus price retail of a product with the given ID to 299.

Loading editor...

const result = await idosellRequest.putProductsOmnibusPrices
	.ident({
		"type":"id",
		"value":"33"
	})
	.omnibusPrices({
		"omnibusPriceRetail":299
	})
	.exec();