Operation Id:
clients/pricelists/products/put [Official Documentaction]
Methods
- priceListId Integer
- products Array<Object>
- producers Array<Object>
- series Array<Object>
- categories Array<Object>
- menuItems Array<Object>
Examples
This function updates the price and currency information of a product with the given ID in the specified price list.
Loading editor...
const result = await idosellRequest.putClientsPricelistsProducts
.priceListId(200)
.products({
"productId": 9,
"price": 10,
"currencyId": "PLN"
})
.exec();