Exporting Carriers from ShipStation
This task will export all carriers 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
Export Services
Required
Set to true to include the services provided by each carrier in the export.
Examples
Sample output file:
<?xml version="1.0" encoding="utf-8"?>
<Carriers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Carrier>
<Name>DHL Express UK</Name>
<Code>dhl_express_uk</Code>
<AccountNumber>123456789</AccountNumber>
<RequiresFundedAccount>false</RequiresFundedAccount>
<Balance>0.0</Balance>
<ShippingProviderId>121005</ShippingProviderId>
<Primary>true</Primary>
<Services>
<Service>
<CarrierCode>dhl_express_uk</CarrierCode>
<Code>dhl_uk_economy_select</Code>
<Name>Economy Select</Name>
<Domestic>false</Domestic>
<International>true</International>
</Service>
<Service>
<CarrierCode>dhl_express_uk</CarrierCode>
<Code>dhl_uk_express_worldwide_eu</Code>
<Name>Express Worldwide EU</Name>
<Domestic>false</Domestic>
<International>true</International>
</Service>
<Service>
<CarrierCode>dhl_express_uk</CarrierCode>
<Code>dhl_uk_economy_select_eu</Code>
<Name>Economy Select EU</Name>
<Domestic>false</Domestic>
<International>true</International>
</Service>
<Service>
<CarrierCode>dhl_express_uk</CarrierCode>
<Code>dhl_uk_domestic_express</Code>
<Name>Domestic Express</Name>
<Domestic>true</Domestic>
<International>false</International>
</Service>
</Services>
</Carrier>
<Carrier>
<Name>DPD</Name>
<Code>dpd</Code>
<AccountNumber>123456789</AccountNumber>
<RequiresFundedAccount>false</RequiresFundedAccount>
<Balance>0.0</Balance>
<ShippingProviderId>376166</ShippingProviderId>
<Primary>true</Primary>
<Services>
<Service>
<CarrierCode>dpd</CarrierCode>
<Code>dpd_parcel_sunday_1030</Code>
<Name>Parcel Sunday 10:30</Name>
<Domestic>true</Domestic>
<International>false</International>
</Service>
<Service>
<CarrierCode>dpd</CarrierCode>
<Code>parcel_sunday</Code>
<Name>Parcel Sunday</Name>
<Domestic>true</Domestic>
<International>false</International>
</Service>
<Service>
<CarrierCode>dpd</CarrierCode>
<Code>dpd_two_day</Code>
<Name>DPD Two Day</Name>
<Domestic>true</Domestic>
<International>false</International>
</Service>
<Service>
<CarrierCode>dpd</CarrierCode>
<Code>dpd_next_day</Code>
<Name>DPD Next Day</Name>
<Domestic>true</Domestic>
<International>false</International>
</Service>
</Services>
</Carrier>
</Carriers>