PriceUpdateInput
Price update data for modifying existing price records.
Contains optional fields for updating price information including pricing values, discount types, tax codes, and display settings. Product ID cannot be changed after creation. All fields are optional for partial updates.
input PriceUpdateInput {
per: Int
list: Float
store: Float
suggested: Float
cost: Float
bulkDiscountType: PriceDiscountType
defaultTaxCode: Taxcode
display: PriceDisplay
}
Fields
PriceUpdateInput.per
● Int
scalar
Unit quantity for the listed price.
Defines how many units of the product are included in the listed price. For example, a value of 1 means the price is per single unit, while 12 might indicate the price is per dozen.
PriceUpdateInput.list
● Float
scalar
Base selling price for the product.
This is the standard price used for pricing calculations before applying customer-specific discounts, volume pricing, or promotional offers. Serves as the foundation for all pricing logic.
PriceUpdateInput.store
● Float
scalar
Physical store selling price.
The price at which the product is sold in brick-and-mortar stores. May differ from online prices due to store-specific costs, regional pricing strategies, or channel-specific promotions.
PriceUpdateInput.suggested
● Float
scalar
Manufacturer's recommended retail price (RRP).
The price recommended by the manufacturer or supplier for retail sales. Used as a reference point for pricing decisions and can be displayed to customers as a comparison price.
PriceUpdateInput.cost
● Float
scalar
Product acquisition cost for margin calculations.
The cost incurred to acquire or produce the product, used for profit margin analysis, pricing decisions, and financial reporting. Essential for maintaining profitable pricing strategies.
PriceUpdateInput.bulkDiscountType
● PriceDiscountType
enum
Volume discount calculation method.
Defines how bulk discounts are applied: as a percentage reduction from the base price or as a fixed discounted price per unit. Determines the calculation logic for volume pricing. One of: [costpriceplus, listpricemin, netprice]
PriceUpdateInput.defaultTaxCode
● Taxcode
enum
Standard tax classification for the product.
The default tax code applied to this product for tax calculations. Can be overridden by zone-specific tax codes or customer-specific tax settings. One of: [H, L, N, M, CUST]
PriceUpdateInput.display
● PriceDisplay
enum
Frontend price display configuration.
Controls how the price should be presented in user interfaces. Options include standard display, promotional formatting, or special pricing indicators. Default value is 'DEFAULT'.
Member Of
priceUpdate
mutation