Skip to content

Import Shipments into BigCommerce

This task will create new and update existing shipments in your Big Commerce platform.

Settings

Connection

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

Fail File

Required
The XML file to output failed imports to.

Input File

Required
The XML file containing the shipments. These should be stored in the same format as detailed below.

If a <shipment> node contains an <id> node, it will be treated as an existing shipment and the task will attempt to update it in BigCommerce.

If no <id> node is provided for the shipment, it will be treat as a new shipment.

Success File

Required
The XML file to output successful imports to.

Zynk Settings

See Common Task Settings.

Examples

Sample input file:

<?xml version="1.0" encoding="utf-8"?>
<shipments>
    <shipment>
        <order_id>100</order_id>
        <tracking_number>1234</tracking_number>
        <order_address_id>1</order_address_id>
        <items>
            <item>
                <order_product_id>1</order_product_id>
                <quantity>1</quantity>
            </item>
        </items>
    </shipment>
</shipments>