categories
and taxCategory
) or they will be removed when the Product Draft is imported.Representations
ProductDraftImportRequest
type | product-draft The resource types that can be imported. |
resources Array of ProductDraftImport | The product draft import resources of this request. MaxItems:20 |
{
"type": "product-draft",
"resources": [
{
"key": "product-draft-key",
"name": {
"en": "blue shirt"
},
"slug": {
"en": "blue-t-shirt"
},
"productType": {
"typeId": "product-type",
"key": "sample"
},
"masterVariant": {
"key": "master-variant-key",
"attributes": [
{
"type": "reference",
"name": "product-ref-attribute",
"value": {
"key": "greatTestCat",
"typeId": "category"
}
},
{
"type": "reference",
"name": "product-custom-object-ref-attribute",
"value": {
"key": "custom-object-key",
"container": "custom-object-container-key",
"typeId": "key-value-document"
}
}
]
}
}
]
}
ProductDraftImport
The representation of a Product Draft for the import purpose.
key String | User-defined unique identifier. If a Product with this MinLength: key exists, it will be updated with the imported data.2 MaxLength: 256 Pattern: ^[A-Za-z0-9_-]+$ |
productType | The productType of a Product.
Maps to Product.productType .
The Reference to the ProductType with which the ProductDraft is associated.
If referenced ProductType does not exist, the state of the ImportOperation will be set to unresolved until the necessary ProductType is created. |
name | |
slug | Human-readable identifiers usually used as deep-link URL to the related product. Each slug must be unique across a project, but a product can have the same slug for different languages. Allowed are alphabetic, numeric, underscore (_) and hyphen (-) characters. |
description | Maps to Product.description . |
categories Array of CategoryKeyReference | The Reference to the Categories with which the ProductDraft is associated.
If referenced Categories do not exist, the state of the ImportOperation will be set to unresolved until the necessary Categories are created. |
metaTitle | |
metaDescription | |
metaKeywords | |
masterVariant | The master Product variant.
Required if the variants array contains a Product Variant. |
variants Array of ProductVariantDraftImport | An array of related Product Variants. |
taxCategory | The Reference to the TaxCategory with which the ProductDraft is associated.
If referenced TaxCategory does not exist, the state of the ImportOperation will be set to unresolved until the necessary TaxCategory is created. |
searchKeywords | |
state | The Reference to the State with which the ProductDraft is associated.
If referenced State does not exist, the state of the ImportOperation will be set to unresolved until the necessary State is created. |
publish Boolean | Determines the published status and current/staged projection of the Product. For more information, see Managing the published state of Products. |
priceMode | Determines the type of Prices the API uses. If not provided, the existing Product.priceMode is not changed. |
ProductVariantDraftImport
The representation of a Product Variant Draft for the import purpose.
key String | |
sku String | |
prices Array of PriceDraftImport | |
attributes Array of Attribute | |
images Array of Image | |
assets Array of Asset |
Attribute
This type represents the value of an attribute of a product variant. The name and type property must match the name and type property of an attribute definition of the product type.
name String | The name of this attribute must match a name of the product types attribute definitions. The name is required if this type is used in a product variant and must not be set when used in a product variant patch. |
type String |
EmbeddedPriceDraftImport
The representation of a Price Draft for the import purpose.
key String | User-defined unique identifier for the Embedded Price. MinLength:2 MaxLength: 256 Pattern: ^[A-Za-z0-9_-]+$ |
value | |
country | A two-digit country code as per ISO 3166-1 alpha-2. |
customerGroup | References a customer group by key. |
channel | References a channel by key. |
validFrom DateTime | |
validUntil DateTime | |
discounted | Sets a discounted price from an external service. |
tiers Array of PriceTier | The tiered prices for this price. |
custom | The custom fields for this category. |
Import ProductDrafts
Creates a request for creating new ProductDrafts or updating existing ones.
manage_products:{projectKey}
region String | The Region in which the Project is hosted. |
projectKey String | The Project key. |
importContainerKey String | The ImportContainer used to create the new resource |
application/json
ImportResponse
application/json