@gradientedge/commercetools-utils
    Preparing search index...

    Interface ProductRemoveImageAction

    Removes a Product image and deletes it from the Content Delivery Network (CDN) if it had been uploaded to our CDN. External images will not be deleted. The API deletes the removed image from the CDN in an eventual consistent way. Either variantId or sku is required.

    interface ProductRemoveImageAction {
        action: "removeImage";
        imageUrl: string;
        sku?: string;
        staged?: boolean;
        variantId?: number;
    }

    Hierarchy (View Summary)

    Index
    action: "removeImage"
    imageUrl: string

    The URL of the image to remove.

    sku?: string

    The sku of the ProductVariant to update.

    staged?: boolean

    Whether only the staged image is removed. If false, both the current image and staged image are removed.

    variantId?: number

    The id of the ProductVariant to update.