Operation Id:
clients/pricelists/post [Official Documentaction]
Methods
- priceListName String
- onlyOrderProductsWithManuallySetPrices 'yes'|'no'
- onlySeeProductsWithManuallySetPrices 'yes'|'no'
Examples
This function returns the price list name for "pricing1".
const result = await idosellRequest.postClientsPricelists
.priceListName("pricing1")
.exec()
This function filters the client price lists to only display products with manually set prices for the price list named "pricing2".
const result = await idosellRequest.postClientsPricelists
.priceListName("pricing2")
.onlyOrderProductsWithManuallySetPrices("yes")
.exec()