Operation Id:
products/sizes/delete/post [Official Documentaction]
Methods
- mode 'delete_by_size'|'delete_all'
- params Array<Object>
- deleteSizesIndexesData Array<String>
- productId Integer
- sizes Array<Object>
Examples
This function deletes the product sizes with sizeId 2 for the product with productId 49.
const result = await idosellRequest.deleteProductsSizes
.mode("delete_by_size")
.productId(49)
.sizes([{"sizeId": "2"}])
.exec()