The given combination of values of a Product Variant conflicts with an existing one. Every Product Variant must have a distinct combination of SKU, prices, and custom attribute values.

interface DuplicateVariantValuesError {
    code: "DuplicateVariantValues";
    message: string;
    variantValues: VariantValues;
}

Hierarchy (View Summary)

Properties

code: "DuplicateVariantValues"

An error identifier.

message: string

A plain language description of the cause of an error.

variantValues: VariantValues

The offending variant values.