action api2cart_product_price_delete { label: "ProductPriceDelete" description: "Delete some prices of the product" provider: api2cart method: DELETE path: "/product.price.delete.json" encoding: json input: { type: "object" properties: { group_prices: { type: "string" } product_id: { type: "string" } } required: ["product_id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { deleted: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }