Import Products into Bluepark
You can use this task to create new or update existing products in your Bluepark store. You can match to existing products using the ID or SKU.
This task supports both creating products and variants. However, for maintaining variant data, it is recommended to use the Import SKU Updates task.
Connection Settings
Connection
Required
The Bluepark connection to use. See the Connecting to Bluepark article if you require more information on how to create/manage connections.
File Settings
Fail File
Required
The file to write failed records to.
Input File
Required
The file containing the records you wish to process.
Success File
Required
The file to write successful records to.
Import Settings
Prevent Reprocessing
Required
Prevent the same record being processed more than once.
Zynk Settings
See Common Task Settings.
XML
<Products>
<Product>
<SKU>ORVI0001</SKU>
<IsActive>true</IsActive>
<Title>Orville Fabric 400x400</Title>
<QuantityInStock>15</QuantityInStock>
<Options>
<Option>
<Name>Colour</Name>
<Values>
<Value>
<Value>Black Background</Value>
<Short>Black</Short>
<IsDefault>true</IsDefault>
<SequentialNumber>1</SequentialNumber>
</Value>
<Value>
<Value>Navy Background</Value>
<Short>Navy</Short>
<IsDefault>false</IsDefault>
<SequentialNumber>2</SequentialNumber>
</Value>
</Values>
</Option>
</Options>
<Variants>
<Variant>
<SKU>ORVIBL01</SKU>
<IsActive>true</IsActive>
<QuantityInStock>10</QuantityInStock>
</Variant>
<Variant>
<SKU>ORVINA01</SKU>
<IsActive>true</IsActive>
<QuantityInStock>5</QuantityInStock>
</Variant>
</Variants>
</Product>
</Products>