Import ASNs
In Mintsoft, an ASN (Advanced Shipping Notice) is intended to advise of a delivery into the warehouse.
Using this task, you can create and update ASNs 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"?>
<ASNs xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ASN>
<MatchClientOn>Name</MatchClientOn>
<Client>
<Name>Hikari</Name>
</Client>
<MatchWarehouseOn>Name</MatchWarehouseOn>
<Warehouse>
<Name>Site 1</Name>
</Warehouse>
<PurchaseOrderReference>EXAMPLE01</PurchaseOrderReference>
<ProductSupplierID>74</ProductSupplierID>
<EstimatedDelivery>2023-03-30T00:00:00</EstimatedDelivery>
<GoodsInType>Carton</GoodsInType>
<Quantity>100</Quantity>
<ASNStatusID>1</ASNStatusID>
<Shipped>false</Shipped>
<HoursLogged>0</HoursLogged>
<Quantity>100</Quantity>
<Items>
<Item>
<SKU>10006 00 06 00060</SKU>
<Quantity>100</Quantity>
</Item>
</Items>
</ASN>
</ASNs>