GraphQL OBJECT

ApplicablePriceConfiguration

Price configuration applied to the product. Price configuration is a special pricing you can create for a single product ID based on a combination of regions, products, and languages.

link Definition

  • type ApplicablePriceConfiguration {
  • # The ID of the client this belongs to.
  • clientId: Int
  • # The name of the applicable price configuration.
  • name: String
  • # The running number of the applicable price configuration.
  • runningNumber: Int
  • # If a parameter is entered, the customer only receives the price if the parameter
  • # is passed in the URL.
  • parameterValue: String
  • # The price configuration.
  • priceConfiguration: PriceConfiguration
  • # The region configuration for which the price is applicable. In the checkout
  • # process, the region is determined by the customer's IP address.
  • regionConfiguration: RegionConfiguration
  • # The partner/affiliate group for which the price is applicable. Only partners who
  • # are included in the group receive the price when ordering.
  • partnerGroup: PartnerGroup
  • # The payment type for which the price is applicable when the customer selects the
  • # payment type in the checkout process..
  • paymentType: ActivePaymentType
  • # The language for which the price is applicable. In the checkout process, the
  • # language is determined by the customer's default browser language.
  • language: Language
  • # The minimum number of licenses that must be in the shopping cart for the price
  • # rule to be applied.
  • minLicenseNumber: Int
  • # The package discount to be used inside the applicable price configuration.
  • packageDiscount: PackageDiscount
  • # The additional package discount to be used inside the applicable price
  • # configuration.
  • additionalPackageDiscount: PackageDiscount
  • }