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