Skip to content

Importing Orders into ShipStation

This task will create or update orders in ShipStation. The orders must be supplied in an XML file.

Settings

ShipStation Connection

Required
The ShipStation connection to use. See the Connecting to ShipStation article if you require more information on how to create/manage connections.

Fail File

Required
The name of a file for failed imports to be output to.

Input File

Required
The source file containing the records to import into ShipStation. The file must be in the XML format shown below.

Success File

Required
The name of a file for successful imports to be output to.

Prevent Reprocessing

Required
Set this to 'True' to check whether the ExternalId of each record supplied in the input XML file has already been processed, and if so skip the record.

Zynk Settings

See Common Task Settings

Examples

A sample input file is shown below.

<?xml version="1.0" encoding="utf-8"?>
<Orders xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Order>
    <OrderKey>AWtest1</OrderKey>
    <ExternalId>7533288</ExternalId>
    <OrderNumber>123456</OrderNumber>
    <OrderDate>2019-07-30T00:00:00</OrderDate>
    <PaymentDate>2019-07-30T00:00:00</PaymentDate>
    <ShipByDate xsi:nil="true" />
    <OrderStatus>awaiting_shipment</OrderStatus>
    <CustomerId xsi:nil="true" />
    <BillTo>
      <Name>Adam W</Name>
      <Street1>6 Charlotte Square</Street1>
      <Street2 />
      <Street3 />
      <City>Newcastle upon Type</City>
      <PostalCode>NE1 4XF</PostalCode>
      <Country>GB</Country>
      <Residential>false</Residential>
    </BillTo>
    <ShipTo>
      <Name>Adam W</Name>
      <Street1>6 Charlotte Square</Street1>
      <Street2 />
      <Street3 />
      <City>Newcastle upon Type</City>
      <PostalCode>NE1 4XF</PostalCode>
      <Country>GB</Country>
      <Residential>false</Residential>
    </ShipTo>
    <Items>
      <OrderItem>
        <Sku>TEST-SKU</Sku>
        <Name>Test Item</Name>
        <Quantity>1</Quantity>
        <UnitPrice>10.00</UnitPrice>
        <TaxAmount>2</TaxAmount>
        <ShippingAmount xsi:nil="true" />
        <Options />
        <Adjustment>false</Adjustment>
      </OrderItem>
    </Items>
    <OrderTotal>10.00</OrderTotal>
    <AmountPaid>12.00</AmountPaid>
    <TaxAmount>2.00</TaxAmount>
    <ShippingAmount>0.00</ShippingAmount>
    <Gift>false</Gift>
    <RequestedShippingService>Priority Service</RequestedShippingService>
    <Confirmation>none</Confirmation>
    <ShipDate xsi:nil="true" />
    <HoldUntilDate xsi:nil="true" />
    <Weight>
      <Value>25</Value>
      <Units>ounces</Units>
    </Weight>
    <InsuranceOptions>
      <InsureShipment>false</InsureShipment>
      <InsuredValue>0.0</InsuredValue>
    </InsuranceOptions>
    <InternationalOptions>
      <Contents xsi:nil="true" />
      <NonDelivery xsi:nil="true" />
    </InternationalOptions>
    <AdvancedOptions>
      <WarehouseId>4610360</WarehouseId>
      <NonMachinable>false</NonMachinable>
      <SaturdayDelivery>false</SaturdayDelivery>
      <ContainsAlcohol>false</ContainsAlcohol>
      <MergedOrSplit>false</MergedOrSplit>
      <MergedIds />
      <ParentId xsi:nil="true" />
      <StoreId>1227725</StoreId>
    </AdvancedOptions>
    <ExternallyFulfilled>false</ExternallyFulfilled>
  </Order>
</Orders>