Exporting Delivery Services from Shiptheory
This task will export all delivery service from Shiptheory to an XML file.
Settings
Shiptheory Connection
Required
The Shiptheory connection to use. See the Connecting to Shiptheory article if you require more information on how to create/manage connections.
Output File
Required
The name of the file to export the data to. The data will be output in XML format, a sample of which is shown below.
Timeout
Optional
The length of time to wait (in seconds) for Shiptheory to respond to each API request. If left blank, or set to 0 or less, a default value of 100 seconds will be applied.
Zynk Settings
Examples
Sample output file:
<?xml version="1.0" encoding="utf-8"?>
<DeliveryServices xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<DeliveryService>
<CarrierName>Parcelforce</CarrierName>
<Services>
<Service>
<Id>20</Id>
<Name>express24</Name>
</Service>
<Service>
<Id>24</Id>
<Name>express48</Name>
</Service>
<Service>
<Id>27</Id>
<Name>globalexpress</Name>
</Service>
<Service>
<Id>30</Id>
<Name>globalvalue</Name>
</Service>
</Services>
</DeliveryService>
<DeliveryService>
<CarrierName>APC</CarrierName>
<Services>
<Service>
<Id>3013</Id>
<Name>Parcel Next Day by 10.00</Name>
</Service>
<Service>
<Id>3016</Id>
<Name>Parcel 2-5 Day</Name>
</Service>
<Service>
<Id>3021</Id>
<Name>Light Weight 2-5 Day</Name>
</Service>
<Service>
<Id>3074</Id>
<Name>Whistl 2nd Class Mail</Name>
</Service>
</Services>
</DeliveryService>
</DeliveryServices>