Skip to content

Exporting Orders from ShipStation

This task will export orders from ShipStation to 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.

Custom Date Range

Optional

  • Date Field - Set to 'CreatedDate', 'ModifiedDate', 'OrderDate' or 'PaymentDate' to enable filtering based on a custom date range. Set to 'None' to disable custom date range filtering. When enabled, this will override the 'Export Settings'.
  • From Date - Specifies the earliest date to return orders from. Must be provided if To Date is blank and custom date range filtering is enabled.
  • To Date - Specifies the latest date to return orders from. Must be provided if From Date is blank and custom date range filtering is enabled.

Export Fulfillments

Required
Set to true to include fulfillment information for each order that is exported.

Export Settings

Required

  • Date Created - When set to export new records, only records created after this date will be exported. The date will update automatically each time the task runs.
  • Date Modified - When set to export modified records, only records created or modified after this date will be exported. The date will update automatically each time the task runs.
  • Export Modified, New or All Records - Used to choose which records should be included in the export. Note that the 'Modified' setting will also export any new records.

Export Shipments

Required
Set to true to include shipment information for each order that is exported.

Export Store

Required
Set to true to include detailed store information for each order that is exported. When set to false, only the store ID will be exported.

Export Tags

Required
Set to true to include detailed tag information for each order that is exported. This will provide the name and colour of each tag that has been added to each order. When set to false, only the tag ID will be exported.

Order IDs

Optional
Used to filter the export based on order ID. Leave blank to export any orders, or enter a comma separated list of order IDs to export specific orders. Please note that entering order IDs will override the Export Settings and Custom Date Range settings.

Order Numbers

Optional
Used to filter the export based on order number. Leave blank to export any orders, or enter a comma separated list of order numbers to export specific orders. Please note that entering order numbers will override the Export Settings and Custom Date Range settings.

Note

Order numbers don't have to be unique in ShipStation. So if you need to export specific orders, it is best to do so using the Order IDs setting.

Order Status

Optional
Used to filter the export based on order status. Leave blank to export orders of any status, or select a particular status from the list to only export orders at that status.

Output File

Required
The name of the file to export the records to. The data will be output in XML format, a sample of which is shown below.

Page Size

Required
The number of records to fetch per page. This defaults to 100, and the maximum value is 500.

Store ID

Optional
Used to filter the export based on store. Leave blank to export orders from all stores, or select a particular store from the list to only export orders from that store.

Zynk Settings

See Common Task Settings

Examples

Sample output file:

<?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>
    <Id>387511393</Id>
    <OrderNumber>1</OrderNumber>
    <OrderKey>manual-5d27217796804f85b8c25f31b0477f43</OrderKey>
    <OrderDate>2019-06-11T08:43:26.693</OrderDate>
    <CreateDate>2019-06-11T08:43:26.69</CreateDate>
    <ModifyDate>2019-06-11T08:43:20.92</ModifyDate>
    <PaymentDate>2019-06-11T08:43:26.693</PaymentDate>
    <ShipByDate xsi:nil="true" />
    <OrderStatus>awaiting_shipment</OrderStatus>
    <CustomerId xsi:nil="true" />
    <CustomerUsername />
    <CustomerEmail />
    <BillTo>
      <Name>Andrew Snape</Name>
      <Residential xsi:nil="true" />
    </BillTo>
    <ShipTo>
      <Name>Andrew Snape</Name>
      <Company>Zynk Software Limited</Company>
      <Street1>8 Newcastle Enterprise Centres</Street1>
      <Street2>6 Charlotte Square</Street2>
      <Street3 />
      <City>Newcastle Upon Tyne</City>
      <State>Tyne and Wear</State>
      <PostalCode>NE1 4XF</PostalCode>
      <Country>GB</Country>
      <Phone />
      <Residential>false</Residential>
      <AddressVerified>Address validated successfully</AddressVerified>
    </ShipTo>
    <Items>
      <OrderItem>
        <Id>45109662</Id>
        <OrderItemId>527127999</OrderItemId>
        <Sku>1</Sku>
        <Name>1</Name>
        <Quantity>1</Quantity>
        <UnitPrice>0.00</UnitPrice>
        <TaxAmount xsi:nil="true" />
        <ShippingAmount xsi:nil="true" />
        <Options />
        <Adjustment>false</Adjustment>
        <CreateDate>2019-06-11T08:43:26.693</CreateDate>
        <ModifyDate>2019-06-11T08:43:26.693</ModifyDate>
      </OrderItem>
    </Items>
    <OrderTotal>0.00</OrderTotal>
    <AmountPaid>0.00</AmountPaid>
    <TaxAmount>0.00</TaxAmount>
    <ShippingAmount>0.00</ShippingAmount>
    <Gift>false</Gift>
    <Confirmation>none</Confirmation>
    <ShipDate xsi:nil="true" />
    <HoldUntilDate xsi:nil="true" />
    <Weight>
      <Value>0.00</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>610360</WarehouseId>
      <NonMachinable>false</NonMachinable>
      <SaturdayDelivery>false</SaturdayDelivery>
      <ContainsAlcohol>false</ContainsAlcohol>
      <MergedOrSplit>false</MergedOrSplit>
      <MergedIds />
      <ParentId xsi:nil="true" />
      <StoreId>227725</StoreId>
    </AdvancedOptions>
    <TagIds>
      <int>1234</int>
    </TagIds>
    <Tags>
      <Tag>
        <Id>1234</Id>
        <Name>On Hold</Name>
        <Color>#FF99CC</Color>
      </Tag>
    </Tags>
    <UserId>12b0cf42-701c-4716-b75c-29bcd6c7007b</UserId>
    <ExternallyFulfilled>false</ExternallyFulfilled>
  </Order>
</Orders>