Skip to content

Import Products

Using this task, you can create and update products in Mintsoft. Configure the settings below and tailor your import data using the developer documentation to meet your specific requirements.

Connection Settings

Connection

Required
The Mintsoft connection to use. See the Connecting to Mintsoft article on how to configure a Mintsoft connection in Zynk.

File Settings

Fail File

Required
The file to write records that fail to import into Mintsoft.

Input File

Required
The file containing records to import into Mintsoft.

Success File

Required
The file to write records that are successfully imported into Mintsoft.

Import Settings

Prevent Reprocessing

Required
Optionally prevent the task updating existing records that have already been imported by the integration.

XML

For a step-by-step breakdown of the XML format, please review the developer documentation.

<?xml version="1.0" encoding="utf-8"?>
<Products
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <Product>
        <ExternalID>TEST0001</ExternalID>
        <SKU>TEST0001</SKU>
        <Name>Test Product</Name>
        <PalletSizes>Standard</PalletSizes>
        <PackingInstructions>Do not stack</PackingInstructions>
        <Description>A test product</Description>
        <CustomsDescription>A test product</CustomsDescription>
        <CountryOfManufactureId>12</CountryOfManufactureId>
        <CountryOfManufacture>
            <Name>Great Britain</Name>
            <Code>GB</Code>
            <Code3>GBR</Code3>
        </CountryOfManufacture>
        <EAN>19012315532</EAN>
        <UPC>19012315532</UPC>
        <LowStockAlertLevel>10</LowStockAlertLevel>
        <Weight>2.5</Weight>
        <Height>2.5</Height>
        <Width>2.5</Width>
        <Depth>2.5</Depth>
        <Volume>15.6</Volume>
        <BackOrder>false</BackOrder>
        <Bundle>false</Bundle>
        <DisCont>false</DisCont>
        <Price>10.99</Price>
        <CostPrice>5.75</CostPrice>
        <VatExempt>false</VatExempt>
        <AdditionalParcelsRequired>0</AdditionalParcelsRequired>
        <UnitsPerParcel>1</UnitsPerParcel>
        <HasBatchNumber>false</HasBatchNumber>
        <LogBatchInbound>false</LogBatchInbound>
        <LogBatchOutbound>false</LogBatchOutbound>
        <HasSerialNumber>false</HasSerialNumber>
        <LogSerialInbound>false</LogSerialInbound>
        <LogSerialOutbound>false</LogSerialOutbound>
        <HasExpiryDate>false</HasExpiryDate>
        <LogExpiryDateInbound>false</LogExpiryDateInbound>
        <LogExpiryDateOutbound>false</LogExpiryDateOutbound>
        <BestBeforeDateWarningPeriodDays>14</BestBeforeDateWarningPeriodDays>
        <CommodityCode>
            <Code>C00102315</Code>
        </CommodityCode>
        <HandlingTime>5</HandlingTime>
        <UnNumber>TEST0001</UnNumber>
        <ImageURL>example.com/test0001.jpg</ImageURL>
        <Subscription>false</Subscription>
        <SubscriptionLength>12</SubscriptionLength>
        <SubscriptionFrequency>Annual</SubscriptionFrequency>
        <MatchClientOn>Name</MatchClientOn>
        <Client>
            <Name>Hikari</Name>
        </Client>
    </Product>
</Products>