Skip to content

Update Orders in Prestashop

This task will update orders in Prestashop. See below for a sample input file.

Fail File

Required
The XML file to save failed order updates to. The data will be written in the same format as the input file.

Input File

Required
The XML file containing the order updates to import in Prestashop.

Success File

Required
The XML file to save successful order updates to. The data will be written in the same format as the input file.

Notify Stage

Required
The stage you want to update orders to.

Connection

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

Zynk Settings

See Common Task Settings.

Examples

A sample input file is shown below.

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfOrder xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <Order>
        <id>2</id>
    </Order>
    <Order>
        <id>3</id>
    </Order>
    <Order>
        <id>6</id>
    </Order>
    <Order>
        <id>7</id>
    </Order>
</ArrayOfOrder>