Skip to content

Exporting Tracking Info from DHL Express

This task will export tracking information from your DHL Express account to an XML file. You must provide one or more tracking numbers to export information for.

Settings

DHL Express Connection

Required
The DHL Express connection to use. See the Connecting to DHL Express article if you require more information on how to create/manage connections.

Shipment Tracking Numbers

Required
The list of tracking numbers to fetch information for from DHL Express. This can be provided in the form of a comma separated list of tracking numbers, or as a Zynk Object list.

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.

Zynk Settings

See Common Task Settings

Examples

Sample output file:

<?xml version="1.0" encoding="utf-8"?>
<Shipments xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Shipment>
    <ExternalId>1234</ExternalId>
    <ShipmentTrackingNumber>8232969010</ShipmentTrackingNumber>
    <Status>Success</Status>
    <ShipmentTimestamp>2023-02-07T15:00:00</ShipmentTimestamp>
    <ProductCode>N</ProductCode>
    <Description>Some nice stuff</Description>
    <ShipperDetails>
      <Name>ZYNK SOFTWARE</Name>
      <PostalAddress>
        <CityName>NEWCASTLE UPON TYNE</CityName>
        <CountyName>Tyne &amp; Wear</CountyName>
        <PostalCode>NE1 4XF</PostalCode>
        <CountryCode>GB</CountryCode>
      </PostalAddress>
      <ServiceAreas>
        <ServiceArea>
          <Code>NCL</Code>
          <Description>Newcastle-GB</Description>
        </ServiceArea>
      </ServiceAreas>
    </ShipperDetails>
    <ReceiverDetails>
      <Name>ZYNK SOFTWARE</Name>
      <PostalAddress>
        <CityName>NEWCASTLE UPON TYNE</CityName>
        <CountyName>Tyne &amp; Wear</CountyName>
        <PostalCode>NE1 4XF</PostalCode>
        <CountryCode>GB</CountryCode>
      </PostalAddress>
      <ServiceAreas>
        <ServiceArea>
          <Code>NCL</Code>
          <Description>Newcastle-GB</Description>
          <FacilityCode>NCL</FacilityCode>
        </ServiceArea>
      </ServiceAreas>
    </ReceiverDetails>
    <TotalWeight>1.5</TotalWeight>
    <UnitOfMeasurements>metric</UnitOfMeasurements>
    <ShipperReferences>
      <ShipperReference>
        <TypeCode xsi:nil="true" />
        <Value>134971452</Value>
      </ShipperReference>
    </ShipperReferences>
    <Events />
    <NumberOfPieces>1</NumberOfPieces>
  </Shipment>
  <!-- If an invalid tracking number is provided, you will see the following returned by the task -->
  <Shipment>
    <ExternalId />
    <Errors>
      <Error>
        <Code>Not Found</Code>
        <Message>No Shipments Found for shipmentTrackingNumber 1010101010</Message>
      </Error>
    </Errors>
    <ShipmentTrackingNumber>1010101010</ShipmentTrackingNumber>
    <TotalWeight xsi:nil="true" />
    <NumberOfPieces xsi:nil="true" />
  </Shipment>
</Shipments>