Skip to content

Exporting Tags from ShipStation

This task will export all tags 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.

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.

Zynk Settings

See Common Task Settings

Examples

Sample output file:

<?xml version="1.0" encoding="utf-8"?>
<Tags xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Tag>
    <Id>1234</Id>
    <Name>On Hold</Name>
    <Color>#FF99CC</Color>
  </Tag>
  <Tag>
    <Id>1235</Id>
    <Name>Pickup Order</Name>
    <Color>#ff69b4</Color>
  </Tag>
  <Tag>
    <Id>1236</Id>
    <Name>Priority Order</Name>
    <Color>#FF00FF</Color>
  </Tag>
</Tags>