Import Order Tracking Number Updates into B2B Wave
This task will import order tracking number updates into your B2B Wave admin panel. You will provide an input file containing a list of order id's and tracking numbers.
You can also optionally update the shipping option (shipping_option_id), the order status (status_order_id), the comments (comments_wholesaler) and you can notify the customer of the update (notify - true/false).
File Settings
Fail File
Required The file to write failed records to.
Input File
Required The file containing the records you wish to process.
Success File
Required The file to save successful records to.
Import Settings
Prevent Reprocessing
Required Prevent the same record being processed more than once by providing an external_id.
Zynk Settings
See Common Task Settings.
Example
This is an example input file:
<?xml version="1.0" encoding="utf-8"?>
<order_tracking_number_updates>
<order_tracking_number_update>
<order_id>25</order_id>
<shipping_tracking>1235156436</shipping_tracking>
</order_tracking_number_update>
</order_tracking_number_updates>
This is an example success file:
<?xml version="1.0" encoding="utf-8"?>
<order_tracking_number_updates xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<order_tracking_number_update>
<shipping_tracking>1235156436</shipping_tracking>
<shipping_option_id xsi:nil="true" />
<status_order_id xsi:nil="true" />
<notify xsi:nil="true" />
<order_id>25</order_id>
<response>
<Status>200</Status>
<Message>The tracking number was updated</Message>
</response>
</order_tracking_number_update>
</order_tracking_number_updates>