Import Order Status Updates into B2B Wave
This task will import order status updates into your B2B Wave admin panel. You will provide an input file containing a list of order id's and order status.
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_status_updates>
<order_status_update>
<order_id>25</order_id>
<status_order_id>6</status_order_id>
</order_status_update>
</order_status_updates>
This is an example success file:
<?xml version="1.0" encoding="utf-8"?>
<order_status_updates xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<order_status_update>
<status_order_id>6</status_order_id>
<order_id>25</order_id>
<response>
<Status>200</Status>
<Message>The order status was updated</Message>
</response>
</order_status_update>
</order_status_updates>