Delete products from the price list.
To add products to price list, use the addProductToPriceList API call.
To edit a product in the price list, use the editProductInPriceList API call.
To retrieve the products that are on the price list, use the getProductsInPriceList API call.
Parameter name | Description | Possible value | Required |
---|---|---|---|
priceListID | The price list where the product rows will be deleted | integer | yes |
priceListProductIDs | The rows to be deleted from the price list. A comma-separated list, such as: 1,2,3. You must send the IDs of price list row records — not product IDs. To find out the respective row IDs, call getProductsInPriceList first. |
string |
Field name | Type | Description |
---|---|---|
deletedIDs | string | The rows that were deleted. Comma-separated list of integers. |
nonExistingIDs | string | A comma-separated list of IDs that were not valid integers, and IDs of rows that do not exist in this price list. |