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

    Interface ValidityLockConflictError

    Returned when a modification is already in progress for the combination of SKU and price scope fields (but potentially different validity period) for a Standalone Price. Retry the same request after 300 ms.

    The error is returned as a failed response to:
    - [Create StandalonePrice](ctp:api:endpoint:/{projectKey}/standalone-prices:POST)
    - [Update StandalonePrice by ID](ctp:api:endpoint:/{projectKey}/standalone-prices/{id}:POST)
    - [Update StandalonePrice by Key](ctp:api:endpoint:/{projectKey}/standalone-prices/key={key}:POST)
    
    interface ValidityLockConflictError {
        channel?: ChannelResourceIdentifier;
        code: "ValidityLockConflict";
        country?: string;
        currency: string;
        customerGroup?: CustomerGroupResourceIdentifier;
        message: string;
        recurrencePolicy?: RecurrencePolicyResourceIdentifier;
        sku: string;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    Channel for which the Standalone Price is valid.

    code: "ValidityLockConflict"

    Error identifier.

    country?: string

    Country code of the geographic location.

    currency: string

    Currency code of the Standalone Price.

    CustomerGroup for which the Standalone Price is valid.

    message: string

    "Modification already in progress for the combination of SKU, price scope fields (but potentially different validity period). Please retry after the current operation completes."

    RecurrencePolicy for which the Standalone Price is valid.

    sku: string

    SKU for which the modification conflict occurred.