Operation Id:
wms/stocksdocuments/products/put [Official Documentaction]
Methods
- products Array<Object>
- type 'pz'|'pw'|'px'|'rx'|'rw'|'mm'
- id Integer
- product Integer
- size String
- quantity Integer
- productPurchasePrice Number
- locationId Integer
- locationCode String
- locationTextId String
Examples
This function selects a specific product from the WmsStocksdocuments table with type "mm", ID 7, product ID 30, size "5", and sets the quantity to 2.
Loading editor...
const result = await idosellRequest.putWmsStocksdocumentsProducts .type("mm") .id(7) .product(30) .size("5") .quantity(2) .exec();