Interface ProductTailoringSetExternalImagesAction

Either variantId or sku is required to reference a ProductVariant that exists. Produces the ProductTailoringImagesSet Message.

interface ProductTailoringSetExternalImagesAction {
    action: "setImages";
    images: Image[];
    sku?: string;
    staged?: boolean;
    variantId?: number;
}

Properties

action: "setImages"
images: Image[]

Value to set to images.

sku?: string

The sku of the tailored ProductVariant to update.

staged?: boolean

If true, only the staged images is updated. If false, both the current and staged images is updated.

variantId?: number

The id of the tailored ProductVariant to update.