Skip to content

Import Products to Brightpearl

This task will create new products in Brightpearl from an XML file. Please note that the task does not support updating existing products.

Settings

Connection

Required
The Brightpearl connection to use. See Connecting to Brightpearl.

Fail File

Required
The file to save failed records to.

Input File

Required
The file containing records to import.

Success File

Required
The file to save successful records to.

Prevent Reprocessing

Required
Set to true to prevent the same records being processed more than once, based on the value of the externalId element in the XML.

Zynk Settings

See Common Task Settings

Examples

Sample input file containing the minimum information required to create a product:

<?xml version="1.0"?>
<ArrayOfProduct>
  <Product>
    <externalId>9346</externalId>
    <brand>
      <name>Other</name>
    </brand>
    <identity>
      <sku>ABC123</sku>
    </identity>
    <financialDetails>
      <taxCode>
        <code>T20</code>
      </taxCode>
    </financialDetails>
    <salesChannels>
      <salesChannel>
        <salesChannelName>Brightpearl</salesChannelName>
        <productName>Uploaded product</productName>
        <productCondition>new</productCondition>
        <description>
          <languageCode>en</languageCode>
          <text>Product description in here</text>
          <format>HTML_FRAGMENT</format>
        </description>
      </salesChannel>
    </salesChannels>
  </Product>
</ArrayOfProduct>