Operation Id:
wms/stocksdocuments/products/delete/post [Official Documentaction]
Methods
- products Array<Object>
- type 'pz'|'pw'|'px'|'rx'|'rw'|'mm'
- id Integer
- product Integer
- size String
Examples
This function deletes a specific document of product type "pz" with id 1 and product ID 33 from the WMS stocks.
Loading editor...
const result = await idosellRequest.deleteWmsStocksdocumentsProducts .type("pz") .id(1) .product(33) .exec();
This function deletes a specific WMS stock document of a certain type, belonging to a particular product with an ID of 33 and a size of "uniw".
Loading editor...
const result = await idosellRequest.deleteWmsStocksdocumentsProducts .type("pz") .id(1) .product(33) .size("uniw") .exec();