GraphQL OBJECT

PriceConfiguration

Special pricing you can create for a single product ID based on a combination of regions, products, and languages.

link Definition

  • type PriceConfiguration {
  • # Price configuration ID.
  • id: Int!
  • # Client to which the configuration belongs.
  • client: Client
  • # Price configuration name.
  • name: String
  • # User who created the price configuration.
  • createdBy: UserAccount!
  • # User who last modified the price configuration.
  • lastModifiedBy: UserAccount!
  • # Date and time when the product was created.
  • creationDate: DateTime
  • # Date and time when the product was last modified.
  • lastModifyDate: DateTime
  • # List of price configuration items
  • items: [PriceConfigurationItem]! @deprecated( reason: "Items is split up into two lists. Please use productItems and productListItems instead." )
  • # List of product price configuration items
  • productItems: [PriceConfigurationProductItem]!
  • # List of productList price configuration items
  • productListItems: [PriceConfigurationProductListItem]!
  • # List of price configuration lists in which the price configuration is used.
  • referringPriceConfigurationLists: [PriceConfigurationList]
  • # List of applicable price configurations in which the price configuration is
  • # used.
  • referringApplicablePriceConfigurations: [ApplicablePriceConfiguration]
  • }