Returned when the Price or Tax Rate of some Line Items or Shipping Rate of some Shipping Methods changed since they were last added to the Cart.

The error is returned as a failed response to:

- [Create Order from Cart](ctp:api:endpoint:/{projectKey}/orders:POST) and [Create Order in Store from Cart](ctp:api:endpoint:/{projectKey}/in-store/orders:POST) requests on Orders.
- [Create Order from Cart](ctp:api:endpoint:/{projectKey}/me/orders:POST) and [Create Order in Store from Cart](ctp:api:endpoint:/{projectKey}/in-store/me/orders:POST) requests on My Orders.
- [Create Order from Quote](ctp:api:endpoint:/{projectKey}/orders/quotes:POST) request on Orders.
- [Create Order from Quote](ctp:api:endpoint:/{projectKey}/me/orders/quotes:POST) request on My Orders.
interface GraphQLPriceChangedError {
    code: "PriceChanged";
    lineItems: string[];
    shipping: boolean;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

code: "PriceChanged"
lineItems: string[]

Unique identifiers of the Line Items for which the Price or TaxRate has changed.

shipping: boolean

true if the ShippingRate has changed.