action api2cart_product_variant_image_delete { label: "ProductVariantImageDelete" description: "Delete image to product" provider: api2cart method: DELETE path: "/product.variant.image.delete.json" encoding: json input: { type: "object" properties: { id: { type: "string" } product_id: { type: "string" } product_variant_id: { type: "integer" } store_id: { type: "string" } } required: ["id", "product_id", "product_variant_id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { deleted: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }