GraphQL INPUT_OBJECT
CreateProductInput
Input for created product.
link Definition
- input CreateProductInput {
- #   List of billing term ids configured for the product. Billing terms are also 
- #   referred to as payment schedules.
- : [Int!]
- #   Unique ID of the client account.
- : Int!
- #   Type of product offered for sale.
- : ProductTypeEnum!
- #   Status of the product. Determines how the product is used in the cleverbridge 
- #   platform.
- : ProductStatusEnum!
- #   ID of the base product from which information is passed down to the product.
- : Int
- #   Sales tax code of the product.
- : SalesTaxCodeEnum
- #   Force override of fields when base product is given.
- : Boolean
- #   Names of the product. Displays to customers on checkout pages and in emails.
- : [LocalizedStringInput]!
- #   Descriptions of the product. Displays to customers on checkout pages and in 
- #   emails.
- : [LocalizedStringInput]
- #   ID of the support contact for the product. Displays to customers on checkout 
- #   pages and in emails.
- : Int
- #   Deprecated, please do not use this field. Starting December 2022, Cleverbridge 
- #   no longer offers backup CD, DVD, or USB drive production and delivery through 
- #   our offices.
- : [LocalizedStringInput]
- #   Versions of the product. Can be displayed to customers on checkout pages.
- : [LocalizedStringInput]
- #   User interface languages in which the product is available. Can be displayed to 
- #   customers on checkout pages.
- : [LocalizedStringInput]
- #   List of operating systems for which the product is available. For internal 
- #   information only.
- : [OperatingSystemEnum]
- #   List of operating systems for which the product is available. Can be displayed 
- #   to customers on checkout pages.
- : [LocalizedStringInput]
- #   Universal Product Code (UPC) or Article Numbering Code (EAN) for boxed products. 
- #   Can be displayed to customers on checkout pages.
- : String
- #   International Standard Book Number (ISBN) for boxed products. Can be displayed 
- #   to customers on checkout pages.
- : String
- #   Code of of the product's default language.
- : LanguageEnum
- #   ID of the default product selection. The product displays in the cart with this 
- #   product selection.
- : Int
- #   Set to true if the product should be dependent on the original product when it 
- #   is added to the cart as a recommendation.
- : Boolean
- #   Default affiliate ID. Used to credit an affiliate for every purchase of this 
- #   product.
- : String
- #   Equal number of licenses automatically generated for cross-sells and sub-sells 
- #   when they are sold with products that have more than one license generated per 
- #   product quantity purchased.
- : Int
- #   License period by number of months. For internal information only.
- : Int
- #   Maximum quantity that can be purchased for this product in an order.
- : Int
- #   Minimum quantity that can be purchased for this product in an order.
- : Int
- #   URL that downloads a demo version of the product for the customer. Can be 
- #   displayed to customers on checkout pages.
- : [LocalizedStringInput]
- #   ID of the product reporting group.
- : Int
- #   Internal ID of the product. Cross-references the purchases for this product with 
- #   your own internal number.
- : String
- #   Internal name of the product. Cross-references the purchases for this product 
- #   with your own internal product name.
- : String
- #   Internal product category for sorting products by a specific type or class.
- : String
- #   Set to true to exclude the product from being registered in third-party tracking 
- #   systems such as Google Analytics or third-party affiliate management systems.
- : Boolean
- #   Price of the product.
- : CreatePriceAbsoluteInput
- #   Set to true to enable dynamic product pricing for the product.
- : Boolean
- #   Shipping configuration ID for physical products.
- : Int
- #   Settings for subscription products.
- : ProductSubscriptionSettingsInput
- #   Content settings of the product.
- : CreateProductContentSettingsInput
- #   Delivery settings of the product.
- : ProductDeliverySettingsInput
- #   List of products that are packaged together. Only for products of type BUNDLE.
- : [ProductBundleInput]
- #   Can hold additional characteristics of the product as a localized string.
- : [LocalizedStringInput]
- }