action billbee_article_delete_image_from_product { label: "Deletes a single image from a product" provider: billbee method: DELETE path: "/api/v1/products/{productId}/images/{imageId}" encoding: json input: { type: "object" properties: { imageId: { type: "integer" format: "int64" } productId: { type: "integer" format: "int64" } } required: ["imageId", "productId"] additionalProperties: false } output: { type: "object" } }