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