Skip to content

Import Tracking to Magento V2

This task will add tracking information to an existing shipment in Magento. See below for a sample input file.

POST /V1/shipment/track

Settings

Connection

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

Fail File

Required
The XML file to save failed tier price imports to. The data will be written in the same format as the input file.

Input File

Required
The XML file containing the tier prices to import in Magento.

Success File

Required
The XML file to save successful tier price imports to. The data will be written in the same format as the input file.

Store View Code

Required
The magento store view code to perform the API calls against. Default value of 'all'.

Description

Required
If you do not provide a element in your XML, the value of this setting will be added to the tracking information in Magento.

Zynk Settings

See Common Task Settings.

Example

<ArrayOfTracking>
    <Tracking>
        <external_id>000165476-123</external_id>
        <shipment>
            <increment_id>000165476</increment_id>
        </shipment>
        <order>
            <increment_id>000203077</increment_id>
        </order>
        <qty>1</qty>
        <weight>0</weight>
        <track_number>123</track_number>
        <title>DHL</title>
        <carrier_code>dhl</carrier_code>
    </Tracking>
</ArrayOfTracking>