Import Inventory
Using this task, you can update the 'on hand' stock level of products in Mintsoft. Configure the settings below and tailor your import data using the developer documentation to meet your specific requirements.
Important
Mintsoft requires you to use an admin level user account when updating stock.
Important
Mintsoft does not support updating stock when bin locations are in use.
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
Page Size
Required
The number of records to send to Mintsoft in each request to the API. The maximum allowed is 100 records per page.
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"?>
<Inventories
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Inventory>
<SKU>TEST0001</SKU>
<Quantity>100</Quantity>
<MatchWarehouseOn>Name</MatchWarehouseOn>
<Warehouse>
<Name>Site 1</Name>
</Warehouse>
<MatchClientOn>Name</MatchClientOn>
<Client>
<Name>Hikari</Name>
</Client>
</Inventory>
<Inventory>
<SKU>TEST0002</SKU>
<Quantity>100</Quantity>
<WarehouseID>523</WarehouseID>
<ClientID>580</ClientID>
</Inventory>
</Inventories>