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.

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 Inactive Products

Required
Set to true to include inactive products in the export.

Product IDs

Optional
Used to filter the export based on product ID. Leave blank to export any products, or enter a comma separated list of product IDs if you want to export specific products. Please note that entering product IDs will override the 'Export Settings' setting.

Product SKUs

Optional
Used to filter the export based on SKU. Leave blank to export any products, or enter a comma separated list of SKUs if you want to export specific products. Please note that entering SKUs will override the 'Export Settings' setting.

Note

ShipStation will return partial matches for each SKU you provide. For example, if you specify the SKU 'TEST0001', and there is a product with the SKU 'TEST0001-1' in ShipStation, it will appear in the export.

Page Size

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

Tag ID

Optional
Used to filter the export based on tags. Leave blank to export products with any tag, or select a particular tag from the list to only export products with this tag.

Zynk Settings

See Common Task Settings

Examples

Sample output file:

<?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>
    <Id>38464895</Id>
    <ExternalId>TEST0001</ExternalId>
    <Sku>TEST0001</Sku>
    <Name>Test Product</Name>
    <Price>19.95</Price>
    <DefaultCost>9.40</DefaultCost>
    <Length>2.3</Length>
    <Width>1.8</Width>
    <Height>1.2</Height>
    <WeightOz>4.2</WeightOz>
    <InternalNotes>For test purposes only</InternalNotes>
    <FulfillmentSku>TEST0001</FulfillmentSku>
    <CreateDate>2024-09-01T08:51:37.36</CreateDate>
    <ModifyDate>2024-09-04T09:21:45.52</ModifyDate>
    <Active>true</Active>
    <ProductCategory>
      <CategoryId>352</CategoryId>
      <Name>Test Products</Name>
    </ProductCategory>
    <WarehouseLocation>Aisle 4</WarehouseLocation>
    <DefaultCarrierCode>DHL</DefaultCarrierCode>
    <DefaultServiceCode>48H</DefaultServiceCode>
    <DefaultPackageCode>SMALL</DefaultPackageCode>
    <DefaultIntlCarrierCode>DHL</DefaultIntlCarrierCode>
    <DefaultIntlServiceCode>48H</DefaultIntlServiceCode>
    <DefaultIntlPackageCode>SMALL</DefaultIntlPackageCode>
    <DefaultConfirmation>None</DefaultConfirmation>
    <DefaultIntlConfirmation>None</DefaultIntlConfirmation>
    <CustomsDescription>Test product</CustomsDescription>
    <CustomsValue>8</CustomsValue>
    <CustomsTariffNo>None</CustomsTariffNo>
    <CustomsCountryCode>GB</CustomsCountryCode>
    <NoCustoms>true</NoCustoms>
    <Tags>
      <Tag>
        <Id>853</Id>
        <Name>Test</Name>
      </Tag>
    </Tags>
  </Product>
</Products>